Skip to content

Commit 24e1cc2

Browse files
committed
CI workflow fixes
Bumps Node.js to 20.16.0 and enables Yarn caching in the update-docs workflow. Adds a step to display Node, Corepack, and Yarn versions for better visibility during CI runs. Updating macos image to macos-15 in ios-actions yml configuration
1 parent 7ec1395 commit 24e1cc2

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/ios-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ on:
3636
jobs:
3737
build:
3838
name: iOS Example Build ${{ inputs.NEW_ARCH && 'Fabric' || 'Paper' }} ${{ inputs.MAP_IMPL }}
39-
runs-on: macos-13
39+
runs-on: macos-15
4040
timeout-minutes: 55
4141
environment: ${{ inputs.env_name }}
4242

.github/workflows/update-docs.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,13 @@ jobs:
3131
path: maps-docs
3232
- uses: actions/setup-node@v4
3333
with:
34-
node-version: 18
34+
node-version: 20.16.0
35+
cache: yarn
36+
- name: Show Node & Yarn versions
37+
run: |
38+
node -v
39+
corepack --version || true
40+
yarn -v
3541
- uses: oven-sh/setup-bun@v1
3642
with:
3743
bun-version: latest

0 commit comments

Comments
 (0)