aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.gitlab-ci.yml')
-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