Skip to content
Snippets Groups Projects
Commit b0e9f2fd authored by N5608's avatar N5608
Browse files

Update .gitlab-ci.yml

parent d28d2693
No related branches found
No related tags found
No related merge requests found
#This declares the pipeline stages
#This declares the pipeline stages
image: node:13.1
stages:
- build
- test
- deploy
cache:
keys: ${CI_COMMIT_REF_SLUG}
paths:
- node_modules/
build:
stage: build
script:
- echo "Initiliaze build task..."
- ./gradlew clean build
- echo "Finalized build task..."
artifacts:
untracked: true
- npm install
- npm run-script build
tags:
- general
test:
stage: test
script:
- echo "Running react test suite......"
tags:
- general
deploy:
stage: deploy
script:
- npm run-script deploy
tags:
- build
- general
test:
script:
- echo "OK"
tags:
- general
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment