From 3f7898349926264cc475a98e7ad13e6bcbdb87e2 Mon Sep 17 00:00:00 2001 From: Ian Thomas Date: Thu, 31 Oct 2024 11:06:30 +0000 Subject: [PATCH] Run end-to-end tests on macos as well as ubuntu (#65) --- .github/workflows/test.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 960464e..4b112ab 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,8 +37,12 @@ jobs: npm run lint:check test: - name: End-to-end tests - runs-on: ubuntu-latest + name: 'End-to-end tests ${{ matrix.os }}' + runs-on: ${{ matrix.os }} + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest, macos-latest] steps: - name: Checkout source uses: actions/checkout@v4