Skip to content
Snippets Groups Projects

Add gitlab-ci file

Merged CaTasTrOOf requested to merge CaTasTrOOf/wotwizard-ui:gitlab-cicd into master
1 file
+ 16
0
Compare changes
  • Side-by-side
  • Inline
.gitlab-ci.yml 0 → 100644
+ 16
0
 
image: node:16
 
 
build-job:
 
stage: build
 
script:
 
- npm install
 
- npm run build
 
only:
 
- merge_requests
 
 
deploy-job:
 
stage: deploy
 
script:
 
- echo "This is where we will put actions to deploy app"
 
only:
 
- tags
Loading