Skip to content

Commit

Permalink
only test:node on Windows for now
Browse files Browse the repository at this point in the history
  • Loading branch information
rvagg committed Jan 8, 2021
1 parent 9e321f4 commit 12f47fd
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
fail-fast: false
matrix:
node: [14.x, 15.x]
os: [macos-latest, ubuntu-latest, windows-latest]
os: [macos-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repository
Expand All @@ -21,3 +21,23 @@ jobs:
- name: Run tests
run: |
npm test
Tests-Windows:
strategy:
fail-fast: false
matrix:
node: [14.x, 15.x]
os: [windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- name: Install Dependencies
run: |
npm install --no-progress
- name: Run tests
run: |
npm run test:node

0 comments on commit 12f47fd

Please sign in to comment.