aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpacien2018-10-10 03:09:17 +0200
committerpacien2018-10-10 03:09:17 +0200
commitc3fa5727d4a377df1325a72e5a48d9a6d3e7f637 (patch)
tree798f8ee82f9c7a4ca01a9a2c984ff32741cb4cb6
parent2f7a4ef1f93ea1056d16132171028b88eb3d5e78 (diff)
downloadjacoco-viewer-c3fa5727d4a377df1325a72e5a48d9a6d3e7f637.tar.gz
Add missing CI stages
-rw-r--r--.gitlab-ci.yml17
1 files changed, 16 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8eb726b..95994cc 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,6 +1,21 @@
1image: node:10.11-alpine 1image: node:8.12-alpine
2
3cache:
4 key: yarn_cache
5 paths:
6 - .yarn_cache
7
8stages:
9 - install
10 - build
11
12install:
13 stage: install
14 script:
15 - yarn install --cache-folder ../.yarn_cache
2 16
3build: 17build:
18 stage: build
4 script: 19 script:
5 - yarn build 20 - yarn build
6 21