Skip to content
Open
Show file tree
Hide file tree
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
9 changes: 5 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@
# To update, be sure to set the NODE_VERSION inside netlify when updating this
# executor.
# @see https://docs.netlify.com/configure-builds/environment-variables/#netlify-configuration-variables

defaultCypressOrbConfig: &defaultCypressOrbConfig
executor:
name: cypress/default
node-version: '18.17.1'
node-version: '20.19.6'

version: 2.1
orbs:
Expand All @@ -17,7 +18,7 @@ jobs:
build:
executor:
name: node/default
tag: '18.17.1'
tag: '20.19.6'
steps:
- checkout
- node/install-packages:
Expand All @@ -34,7 +35,7 @@ jobs:
steps:
- cypress/install:
# --force is needed to avoid unsupported platform issues with netlify cli dependencies on @esbuild/android-arm
install-command: npm ci --force
install-command: npm update -g npm && npm ci --force
- persist_to_workspace:
paths:
- .cache/Cypress
Expand All @@ -44,7 +45,7 @@ jobs:
release:
executor:
name: node/default
tag: '18.17.1'
tag: '20.19.6'
environment:
# since we do not need Cypress to publish the NPM package
# we can skip the binary download
Expand Down
Loading