Skip to content

Commit

Permalink
Run npm test on all operating systems
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert committed Aug 28, 2020
1 parent 8229390 commit da1c00f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,12 @@ jobs:
echo "Success: node_modules are up to date"
npm-test:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest,macos-latest]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v1
- name: npm run-script test
run: npm run-script test
run: npm run-script test

0 comments on commit da1c00f

Please sign in to comment.