blob: 18e4d37c5ac9451678591f66444f092351b1050d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
image: node:8.12-alpine
cache:
key: yarn_cache
paths:
- .yarn_cache
install:
script:
- yarn install --cache-folder .yarn_cache
build:
dependencies:
- install
script:
- yarn build
|