From eebca05e1c8b555079266aab688c25a38f1cd95f Mon Sep 17 00:00:00 2001 From: Yousaf Nabi Date: Thu, 9 May 2024 13:07:22 +0100 Subject: [PATCH] ci(macos): add macos-12 to cover x86_64 macos-latest is now arm64 --- .github/workflows/build-and-test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 41fc000..f083b2d 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -7,10 +7,11 @@ on: jobs: build-and-test-osx: - runs-on: macos-latest + runs-on: ${{ matrix.os }} strategy: matrix: node-version: [16.x, 18.x, 20.x] + os: [macos-12, macos-latest] fail-fast: false steps: @@ -94,4 +95,4 @@ jobs: uses: coverallsapp/github-action@master with: github-token: ${{ secrets.github_token }} - parallel-finished: true \ No newline at end of file + parallel-finished: true