Created
May 15, 2021 13:35
-
-
Save fachryansyah/9f6eb0ef88f0d8c9a4cb73b91c57b948 to your computer and use it in GitHub Desktop.
full
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
variables: | |
TEST_NAME: gitlab.com/viclates-kingdom/test-ci-cd:$CI_COMMIT_REF_NAME | |
stages: | |
- test | |
- stop | |
- run | |
testing: | |
stage: test | |
script: | |
- echo 'Running a test' | |
- npm install | |
- npm run test | |
tags: | |
- test | |
run_services: | |
stage: run | |
script: | |
- echo 'Running prod app' | |
- npm install | |
- ./scripts/run.sh | |
tags: | |
- build |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment