This repository was archived by the owner on Mar 5, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ workflows:
8
8
# AND build the library once
9
9
# then the workspace will be passed to other jobs
10
10
- cypress/install :
11
- name : Install 📦
11
+ name : Install
12
12
build : npm run transpile
13
13
post-steps :
14
14
- run :
@@ -21,9 +21,9 @@ workflows:
21
21
# the test job automatically attaches the workspace
22
22
# created by the install job, so it is ready to test
23
23
- cypress/run :
24
- name : Test 🧪
24
+ name : Test
25
25
requires :
26
- - Install 📦
26
+ - Install
27
27
# notice a trick to avoid re-installing dependencies
28
28
# in this job - a do-nothing "install-command" parameter
29
29
install-command : echo 'Nothing to install in this job'
@@ -35,12 +35,12 @@ workflows:
35
35
# so it is ready to run Cypress tests
36
36
# only we will run semantic release script instead
37
37
- cypress/run :
38
- name : NPM release 🚀
38
+ name : NPM release
39
39
# we need newer Node for semantic release
40
40
executor : cypress/base-12-6-0
41
41
requires :
42
- - Install 📦
43
- - Test 🧪
42
+ - Install
43
+ - Test
44
44
install-command : echo 'Nothing to install in this job'
45
45
no-workspace : true
46
46
# instead of "cypress run" do NPM release 😁
You can’t perform that action at this time.
0 commit comments