Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ jobs:
run: opam exec -- npm ci

- name: Run tests (macOS)
if: runner.name == 'macos-latest'
if: matrix.os == 'macos-latest'
run: opam exec -- node scripts/ciTest.js -all

- name: Run tests (macos-arm)
if: runner.name == 'macos-arm'
if: matrix.os == 'macos-arm'
run: opam exec -- node scripts/ciTest.js -ounit -mocha -theme

- name: Run tests (Linux)
Expand Down