diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 02d895f..d45afb9 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -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 \ No newline at end of file