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:
88 # AND build the library once
99 # then the workspace will be passed to other jobs
1010 - cypress/install :
11- name : Install 📦
11+ name : Install
1212 build : npm run transpile
1313 post-steps :
1414 - run :
@@ -21,9 +21,9 @@ workflows:
2121 # the test job automatically attaches the workspace
2222 # created by the install job, so it is ready to test
2323 - cypress/run :
24- name : Test 🧪
24+ name : Test
2525 requires :
26- - Install 📦
26+ - Install
2727 # notice a trick to avoid re-installing dependencies
2828 # in this job - a do-nothing "install-command" parameter
2929 install-command : echo 'Nothing to install in this job'
@@ -35,12 +35,12 @@ workflows:
3535 # so it is ready to run Cypress tests
3636 # only we will run semantic release script instead
3737 - cypress/run :
38- name : NPM release 🚀
38+ name : NPM release
3939 # we need newer Node for semantic release
4040 executor : cypress/base-12-6-0
4141 requires :
42- - Install 📦
43- - Test 🧪
42+ - Install
43+ - Test
4444 install-command : echo 'Nothing to install in this job'
4545 no-workspace : true
4646 # instead of "cypress run" do NPM release 😁
You can’t perform that action at this time.
0 commit comments