Skip to content
Snippets Groups Projects
Commit bfaf7aaa authored by Jonny Ngo Luong's avatar Jonny Ngo Luong
Browse files

b

parent 6965d7e5
No related branches found
No related tags found
No related merge requests found
Pipeline #120379 failed
image: node:4.2.2
install:
stage: install
script:
- npm install
- cd server && npm install && cd ..
- cd client && npm install
build:
stage: build
script:
- echo "build"
- cd server && npm run build && cd ..
- cd client && npm build
test:
stage: test
script:
- echo "test"
deploy:
stage: deploy
script:
- echo "deploy"
only:
- master
- cd server && npm test && cd ..
- cd client && npm test
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment