aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 95994cc2584d3bc9e86f3f8a8b16b767433688c2 (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