Skip to content

Conflict fixes

Conflict fixes #37

Workflow file for this run

name: Windows
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [12, 14, 16, 18, 20]
os: [windows-latest]
steps:
- uses: actions/checkout@v1
- uses: microsoft/setup-msbuild@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, build, and test
run: |
npm install
npm test
env:
CI: true