File tree Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Expand file tree Collapse file tree 2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 24
24
root : ~/editor
25
25
paths :
26
26
- " *"
27
+ integration :
28
+ docker :
29
+ - image : cypress/base:14.16.0
30
+ environment :
31
+ TERM : xterm
32
+ working_directory : ~/editor
33
+ steps :
34
+ - attach_workspace :
35
+ at : ~/editor
36
+ - run :
37
+ name : reinstall cypress binary
38
+ command : npm install cypress
39
+ - run : npm run integration:tests
27
40
release :
28
41
working_directory : ~/editor
29
42
docker :
@@ -47,6 +60,9 @@ workflows:
47
60
build_and_deploy :
48
61
jobs :
49
62
- build
63
+ - integration :
64
+ requires :
65
+ - build
50
66
- release :
51
67
requires :
52
68
- build
Original file line number Diff line number Diff line change 25
25
"build:esm" : " tsc --module es2015 --target es5 --outDir ./esm" ,
26
26
"build:packages" : " node ../../scripts/generate-packages.js" ,
27
27
"build:css" : " node ../../scripts/copy-css.js" ,
28
- "integration:tests" : " cypress run --component --browser chrome "
28
+ "integration:tests" : " cypress run --component --browser electron "
29
29
},
30
30
"devDependencies" : {
31
31
"cypress" : " ^10.0.2"
You can’t perform that action at this time.
0 commit comments