Commit c30d7bf1 c30d7bf16c4afacdb113c5567857c6e49d72dc6d by Vincent Peybernes

Update .gitlab-ci.yml

1 parent cf5dcc15
Pipeline #11 for c30d7bf1 passed in 1 minute 40 seconds
......@@ -5,22 +5,17 @@ cache:
- node_modules/
stages:
- install
- test
- build
install:
stage: install
script:
- npm install
node_test:
stage: test
script:
- npm install
- npm test
build:
stage: build
script:
- npm install
- npm run build
......