Compare commits

...
Sign in to create a new pull request.

2 commits

Author SHA1 Message Date
Jonas Birmé
3992d894d4 chore: use windows-2019 runner 2023-08-10 16:20:45 +02:00
Jonas Birmé
56a9f89c6b chore: try build on windows 2023-08-10 15:42:46 +02:00

View file

@ -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: