Skip to content
Snippets Groups Projects
Commit 1e5a1aef authored by Keith Millette's avatar Keith Millette
Browse files

Add gitlab-ci.yml

parent e065e942
Branches
No related tags found
No related merge requests found
Pipeline #262221 failed
image: node:latest
stages:
- test
- deploy
test:
stage: test
script:
- cd website
- yarn install
- yarn build
except:
- master
pages:
stage: deploy
script:
- cd website
- yarn install
- yarn build
- mv ./build ../public
artifacts:
paths:
- public
only:
- master
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment