Skip to content

Commit

Permalink
chore: try build on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
birme committed Aug 10, 2023
1 parent c3e77b1 commit 56a9f89
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,26 @@ jobs:
env:
CI: true

build-windows:
runs-on: windows-latest
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:
Expand Down

0 comments on commit 56a9f89

Please sign in to comment.