Update .gitlab-ci.yml
Showing
1 changed file
with
2 additions
and
7 deletions
... | @@ -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 | ... | ... |
-
Please register or sign in to post a comment