Skip to content
Closed
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
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ jobs:
steps:
- checkout
- run:
name: Install node 16
command: nvm install 16.16.0
name: Install node 18
command: nvm install 18.16.1
- run:
name: Use node 16
command: nvm use 16.16.0
name: Use node 18
command: nvm use 18.16.1
- run:
name: Install deps for code coverage
command: npm ci
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:

cyrun:
docker:
- image: cypress/base:16.18.1
- image: cypress/base:18.16.1
parameters:
jobname:
type: string
Expand All @@ -113,7 +113,7 @@ jobs:

test-code-coverage-plugin:
docker:
- image: cypress/base:16.18.1
- image: cypress/base:18.16.1
steps:
- attach_workspace:
at: ~/
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ coverage/
.nyc_output/
dist/
.cache/
.parcel-cache/
.vscode/
cypress-coverage/
yarn.lock
Expand Down
Loading