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: ...@@ -5,22 +5,17 @@ cache:
5 - node_modules/ 5 - node_modules/
6 6
7 stages: 7 stages:
8 - install
9 - test 8 - test
10 - build 9 - build
11 10
12
13 install:
14 stage: install
15 script:
16 - npm install
17
18 node_test: 11 node_test:
19 stage: test 12 stage: test
20 script: 13 script:
14 - npm install
21 - npm test 15 - npm test
22 16
23 build: 17 build:
24 stage: build 18 stage: build
25 script: 19 script:
20 - npm install
26 - npm run build 21 - npm run build
......