Skip to content

Commit

Permalink
chore(build): switch to macos-14 (#54)
Browse files Browse the repository at this point in the history
Fixes #53

Signed-off-by: Jeff MAURY <[email protected]>
  • Loading branch information
jeffmaury authored Jul 10, 2024
1 parent 7a22d5b commit b6f8560
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pr-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
matrix:
include:
- os: "windows-2022"
- os: "macos-11"
- os: "macos-14"
- os: "ubuntu-22.04"
timeout-minutes: 20
env:
Expand All @@ -48,7 +48,7 @@ jobs:
run: echo "dir=$(yarn cache dir)" >> ${env:GITHUB_OUTPUT}

- name: Get yarn cache directory path (mac/Linux)
if: ${{ matrix.os=='ubuntu-22.04' || matrix.os=='macos-11' }}
if: ${{ matrix.os=='ubuntu-22.04' || matrix.os=='macos-14' }}
id: yarn-cache-dir-path-unix
run: echo "dir=$(yarn cache dir)" >> ${GITHUB_OUTPUT}

Expand All @@ -62,7 +62,7 @@ jobs:
${{ runner.os }}-yarn-
- uses: actions/cache@v3
if: ${{ matrix.os=='ubuntu-22.04' || matrix.os=='macos-11' }}
if: ${{ matrix.os=='ubuntu-22.04' || matrix.os=='macos-14' }}
id: yarn-cache-unix
with:
path: ${{ steps.yarn-cache-dir-path-unix.outputs.dir }}
Expand All @@ -76,7 +76,7 @@ jobs:
# skip formatter on windows
- name: Formatter
if: ${{ matrix.os=='ubuntu-22.04' || matrix.os=='macos-11' }}
if: ${{ matrix.os=='ubuntu-22.04' || matrix.os=='macos-14' }}
run: yarn format:check

- name: Linter
Expand Down

0 comments on commit b6f8560

Please sign in to comment.