From 2d024fd7e6b2bc276481654b52cd93cc28bd4a62 Mon Sep 17 00:00:00 2001 From: Dave Page Date: Wed, 5 Apr 2023 13:39:44 +0100 Subject: [PATCH] Run Javascript tests on all three major platforms. --- .github/workflows/run-javascript-tests.yml | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/.github/workflows/run-javascript-tests.yml b/.github/workflows/run-javascript-tests.yml index 99ed7624d..13bf63fe5 100644 --- a/.github/workflows/run-javascript-tests.yml +++ b/.github/workflows/run-javascript-tests.yml @@ -14,19 +14,16 @@ concurrency: jobs: build: - runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + os: [macos-latest, ubuntu-latest, windows-latest] + + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - - name: Install platform dependencies - run: | - sudo apt update - sudo apt install -y nodejs npm - - - name: Install Node dependencies - run: sudo npm install --global yarn - - name: Install Node modules run: | cd web