From f823d0eeb39e113d4c549b774b176a573f2755c2 Mon Sep 17 00:00:00 2001 From: Cristiano Calcagno Date: Wed, 8 Jun 2022 13:27:37 +0200 Subject: [PATCH] Make sure full tests are run on mac. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a545e65fe6..91a9d2a1c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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)