Skip to content

Commit

Permalink
ci: add test run on a windows environment
Browse files Browse the repository at this point in the history
  • Loading branch information
MKruschke committed Dec 23, 2020
1 parent 4894fb8 commit 64e0099
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,19 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn test

windows:
runs-on: windows-latest

strategy:
matrix:
node-version: [14.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }} with windows
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn test

0 comments on commit 64e0099

Please sign in to comment.