aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 98d0d6da0f0ed27b67b442163f11fb2f7fe825e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
image: node:8.12-alpine

cache:
  key: yarn_cache
  paths: [ .yarn_cache ]

build:
  script:
    - yarn install --cache-folder .yarn_cache
    - yarn build
  artifacts:
    paths: [ build ]