This repository was archived by the owner on May 20, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +170
-74
lines changed Expand file tree Collapse file tree 6 files changed +170
-74
lines changed Original file line number Diff line number Diff line change 1+ defaultCypressOrbConfig : &defaultCypressOrbConfig
2+ executor :
3+ name : cypress/default
4+ node-version : ' 18.17.1'
5+
6+ # Use the latest 2.1 version of CircleCI pipeline process engine.
7+ # See: https://circleci.com/docs/configuration-reference
8+ version : 2.1
9+ orbs :
10+ # see https://github.com/cypress-io/circleci-orb
11+ cypress : cypress-io/cypress@3.1.4
12+ jobs :
13+ install-and-persist :
14+ << : *defaultCypressOrbConfig
15+ steps :
16+ - cypress/install :
17+ install-command : yarn
18+ - persist_to_workspace :
19+ paths :
20+ - .cache/Cypress
21+ - project
22+ root : ~/
23+ run-tests :
24+ << : *defaultCypressOrbConfig
25+ steps :
26+ - attach_workspace :
27+ at : ~/
28+ - cypress/run-tests :
29+ start-command : npm run start
30+ cypress-command : NODE_ENV=test npm run cypress:run
31+ - run : npm run report:coverage:summary
32+ - run : npm run report:coverage:text
33+ # send code coverage to coveralls.io
34+ # https://coveralls.io/github/cypress-io/cypress-example-todomvc-redux
35+ # our coveralls account is currently not enabled
36+ # - run: npm run coveralls
37+
38+ # See: https://circleci.com/docs/configuration-reference/#workflows
39+ workflows :
40+ main :
41+ jobs :
42+ - install-and-persist
43+ - run-tests :
44+ requires :
45+ - install-and-persist
Original file line number Diff line number Diff line change 1414
1515# this job installs NPM dependencies and Cypress
1616test :
17- image : cypress/base:14
17+ image : cypress/base:18.16.1
1818 script :
1919 - yarn install --frozen-lockfile
2020 # check Cypress binary path and cached versions
Original file line number Diff line number Diff line change 1- 18.12
1+ 18.16.0
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 55 "main" : " index.js" ,
66 "private" : true ,
77 "engines" : {
8- "node" : " >=12.14 "
8+ "node" : " >=18 "
99 },
1010 "scripts" : {
1111 "test" : " start-test 1234 cypress:run" ,
4343 "babel-plugin-transform-class-properties" : " 6.24.1" ,
4444 "coveralls" : " 3.1.1" ,
4545 "cross-env" : " 7.0.3" ,
46- "cypress" : " 12.3 .0" ,
46+ "cypress" : " 13.1 .0" ,
4747 "cypress-react-unit-test" : " 4.17.2" ,
4848 "istanbul-lib-coverage" : " 3.2.0" ,
4949 "parcel-bundler" : " 1.12.5" ,
You can’t perform that action at this time.
0 commit comments