|
|
@ -10,20 +10,22 @@ jobs:
|
|
|
|
command: npx @puppeteer/browsers install chrome@stable
|
|
|
|
command: npx @puppeteer/browsers install chrome@stable
|
|
|
|
- run:
|
|
|
|
- run:
|
|
|
|
command: |
|
|
|
|
command: |
|
|
|
|
ls
|
|
|
|
ls && owd
|
|
|
|
- persist_to_workspace:
|
|
|
|
- persist_to_workspace:
|
|
|
|
root: ~/project
|
|
|
|
root: ~/project
|
|
|
|
paths:
|
|
|
|
paths:
|
|
|
|
- .
|
|
|
|
- .
|
|
|
|
|
|
|
|
test: # this can be any name you choose
|
|
|
|
|
|
|
|
executor: node/default
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
|
|
|
command: |
|
|
|
|
|
|
|
|
ls && pwd
|
|
|
|
workflows:
|
|
|
|
workflows:
|
|
|
|
run-cy-tests:
|
|
|
|
run-cy-tests:
|
|
|
|
jobs:
|
|
|
|
jobs:
|
|
|
|
- install-browser
|
|
|
|
- install-browser
|
|
|
|
|
|
|
|
- test
|
|
|
|
- cypress/run:
|
|
|
|
- cypress/run:
|
|
|
|
steps:
|
|
|
|
|
|
|
|
run:
|
|
|
|
|
|
|
|
command: |
|
|
|
|
|
|
|
|
ls && pwd
|
|
|
|
|
|
|
|
requires:
|
|
|
|
requires:
|
|
|
|
- install-browser
|
|
|
|
- install-browser
|
|
|
|
cypress-command: 'npm run cy:ci'
|
|
|
|
cypress-command: 'npm run cy:ci'
|
|
|
|