ultrawidify/.gitlab-ci.yml

23 lines
255 B
YAML
Raw Normal View History

2019-02-14 00:29:17 +01:00
image: node:current
2019-02-14 00:22:59 +01:00
cache:
paths:
- node_modules/
- .yarn
2019-02-14 00:17:53 +01:00
stages:
- prep
- build
- pack
install deps:
stage: prep
script: yarn install
build:
stage: build
script: npm run build
create zip:
stage: pack
script: npm run build-zip