-
-
Save Mr-Kumar-Abhishek/7176c54cb03beec5b054ce2211ffadd2 to your computer and use it in GitHub Desktop.
gitlab ci file for gulp build pipeline with the latest nodejs
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
image: node:latest | |
cache: | |
paths: | |
- node_modules/ | |
before_script: | |
- npm install | |
stages: | |
- build_deploy | |
build_&_deploy_app: | |
stage: build_deploy | |
only: | |
- master | |
script: | |
- gulp build -production | |
- gulp deploy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment