Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 10 additions & 3 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ orbs:
executors:
mac:
macos:
xcode: "14.3.1"
resource_class: macos.m1.medium.gen1
xcode: "16.4.0"
resource_class: m4pro.medium

jobs:
mac-test:
Expand All @@ -20,6 +20,13 @@ jobs:

steps:
- checkout
- run:
name: Install Node.js
command: |
nvm --version
nvm install 24.11.0
nvm use 24.11.0
nvm alias default 24.11.0
- run: npm ci
- run: npm install cypress
- run: npm run cypress:info
Expand All @@ -30,7 +37,7 @@ jobs:
linux-test:
docker:
# find Docker image at https://github.com/cypress-io/cypress-docker-images
- image: cypress/base:18.16.1
- image: cypress/base:24.11.0

working_directory: ~/repo

Expand Down