Compare commits
2 commits
master
...
chore-buil
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3992d894d4 | ||
|
|
56a9f89c6b |
1 changed files with 20 additions and 0 deletions
20
.github/workflows/nodejs.yml
vendored
20
.github/workflows/nodejs.yml
vendored
|
|
@ -23,6 +23,26 @@ jobs:
|
|||
env:
|
||||
CI: true
|
||||
|
||||
build-windows:
|
||||
runs-on: windows-2019
|
||||
strategy:
|
||||
matrix:
|
||||
node-version: [18.x]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Use Node.js ${{ matrix.node-version }}
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- name: npm install, build, and test
|
||||
run: |
|
||||
npm ci
|
||||
npm run build --if-present
|
||||
npm test
|
||||
env:
|
||||
CI: true
|
||||
|
||||
# build-windows:
|
||||
# runs-on: windows-latest
|
||||
# strategy:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue