-
-
Save JacobDB/2f665c82d018ccefa8b86c61542d949e to your computer and use it in GitHub Desktop.
gitlab ci file for gulp build pipeline with the latest nodejs
This file contains hidden or 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 -g gulp | |
- 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