We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d946fcf commit 6580f79Copy full SHA for 6580f79
.github/workflows/ci.yml
@@ -57,11 +57,11 @@ jobs:
57
run: opam exec -- npm ci
58
59
- name: Run tests (macOS)
60
- if: runner.name == 'macos-latest'
+ if: matrix.os == 'macos-latest'
61
run: opam exec -- node scripts/ciTest.js -all
62
63
- name: Run tests (macos-arm)
64
- if: runner.name == 'macos-arm'
+ if: matrix.os == 'macos-arm'
65
run: opam exec -- node scripts/ciTest.js -ounit -mocha -theme
66
67
- name: Run tests (Linux)
0 commit comments