We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3455e4 commit fab347fCopy full SHA for fab347f
src/examples/edge.yml
@@ -4,12 +4,19 @@ usage:
4
version: 2.1
5
orbs:
6
cypress: cypress-io/cypress@3
7
- executor:
8
- docker:
9
- image: cypress/browsers:node-18.14.1-chrome-111.0.5563.146-1-ff-111.0.1-edge-111.0.1661.54-1
+ executors:
+ cypress-browsers:
+ docker:
10
+ - image: cypress/browsers:node-20.17.0-chrome-129.0.6668.70-1-ff-130.0.1-edge-129.0.2792.52-1
11
+ jobs:
12
+ edge-test:
13
+ executor: cypress-browsers
14
+ steps:
15
+ - cypress/install
16
+ - cypress/run-tests:
17
+ start-command: "npm run start:dev"
18
+ cypress-command: 'npx cypress run --browser edge'
19
workflows:
20
use-my-orb:
21
jobs:
- - cypress/run:
- start-command: "npm run start:dev"
- cypress-command: "npx cypress run --browser edge"
22
+ - edge-test
0 commit comments