aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: ba99f5616e3491dd274b0e2ce17616092918feed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
image: node:8.12-alpine

cache:
  key: yarn_cache
  paths:
    - .yarn_cache

stages:
  - install
  - build

install:
  stage: install
  script:
    - yarn install --cache-folder .yarn_cache

build:
  stage: build
  script:
    - yarn build