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
24 changes: 12 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
name: Install Node.js
command: |
nvm --version
nvm install 22
nvm use 22
nvm install 24.11.0
nvm use 24.11.0
- restore_cache:
key: dependencies-{{ arch }}-{{ .Branch }}-{{ checksum "package.json" }}

Expand Down Expand Up @@ -70,8 +70,8 @@ jobs:
name: Install Node.js
command: |
nvm --version
nvm install 22
nvm use 22
nvm install 24.11.0
nvm use 24.11.0
- restore_cache:
key: dependencies-{{ arch }}-{{ .Branch }}-{{ checksum "package.json" }}

Expand Down Expand Up @@ -113,8 +113,8 @@ jobs:
name: Install Node.js
command: |
nvm --version
nvm install 22
nvm use 22
nvm install 24.11.0
nvm use 24.11.0
- restore_cache:
key: dependencies-{{ arch }}-{{ .Branch }}-{{ checksum "package.json" }}

Expand Down Expand Up @@ -150,8 +150,8 @@ jobs:
- run:
name: Install Node.js
command: |
nvm install 22
nvm use 22
nvm install 24.11.0
nvm use 24.11.0
- cypress/install:
post-install: "npm run build"
# show Cypress cache folder and binary versions
Expand All @@ -170,7 +170,7 @@ jobs:
parallelism: 3
executor:
name: cypress/default
node-version: '22.20.0'
node-version: '24.11.0'
steps:
- cypress/install:
post-install: 'npm run build'
Expand All @@ -192,7 +192,7 @@ jobs:
parallelism: 2
executor:
name: cypress/default
node-version: '22.20.0'
node-version: '24.11.0'
steps:
- cypress/install:
install-browsers: true
Expand All @@ -205,7 +205,7 @@ jobs:
parallelism: 2
executor:
name: cypress/default
node-version: '22.20.0'
node-version: '24.11.0'
steps:
- cypress/install:
install-browsers: true
Expand All @@ -216,7 +216,7 @@ jobs:
release:
executor:
name: cypress/default
node-version: '22.20.0'
node-version: '24.11.0'
steps:
- checkout
- run: npm ci
Expand Down