Created
May 18, 2017 17:44
-
-
Save josephrace/719bfc7e40f632fd7aa3940ef1ede59e to your computer and use it in GitHub Desktop.
Configuration file for create-react-app on GitLab Pages
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:7.9.0 # change to match your node version | |
cache: | |
paths: | |
- node_modules/ | |
before_script: | |
- npm install | |
test: | |
stage: test | |
script: | |
- CI=true npm test | |
pages: | |
stage: deploy | |
script: | |
- CI=true npm run build | |
- rm -rf public | |
- mv build public | |
artifacts: | |
paths: | |
- public # GitLab pages serve from a 'public' directory | |
only: | |
- master # run on master branch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Totally saved me