From bd07451ba187ae052bb156e2cc9c70a4acf02e89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20H=C3=BCbelbauer?= Date: Mon, 29 May 2023 19:46:12 +0200 Subject: [PATCH] feat: introduce a matrix with latest Ubuntu and macOS to test the build on macOS as well Once #615 is merged, the build script should work on macOS just as well as it does on Ubuntu and with this GitHub Actions matrix we can keep ensuring that it continues to work as it should. --- .github/workflows/check.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index f32693861c..4264d7a087 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -4,6 +4,10 @@ jobs: check: name: Check runs-on: ubuntu-latest + strategy: + matrix: + os: [ubuntu-latest, macos-latest] + runs-on: ${{ matrix.os }} steps: - name: Checkout uses: actions/checkout@v2 @@ -35,4 +39,4 @@ jobs: if: failure() with: name: npm-logs - path: ~/.npm/_logs \ No newline at end of file + path: ~/.npm/_logs