Skip to content

Commit 5bd2832

Browse files
Merge pull request #164 from github/npm_test_os
Run `npm test` on linux and macos
2 parents 8229390 + b1d719e commit 5bd2832

File tree

4 files changed

+29
-13
lines changed

4 files changed

+29
-13
lines changed

.github/workflows/pr-checks.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,12 @@ jobs:
6565
echo "Success: node_modules are up to date"
6666
6767
npm-test:
68-
runs-on: ubuntu-latest
68+
strategy:
69+
matrix:
70+
os: [ubuntu-latest,macos-latest]
71+
runs-on: ${{ matrix.os }}
6972

7073
steps:
7174
- uses: actions/checkout@v1
7275
- name: npm run-script test
73-
run: npm run-script test
76+
run: npm run-script test

lib/tracer-config.test.js

Lines changed: 11 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/tracer-config.test.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)