newpct-scrapper
Version:
Utilidades para newpct
27 lines (22 loc) • 318 B
YAML
image: node:7.6.0
stages:
- build
- test
cache:
untracked: true
paths:
- node_modules/
build:
stage: build
script:
- yarn config set cache-folder .yarn
- yarn install
- yarn build
artifacts:
paths:
- node_modules/
- dist/
test:
stage: test
script:
- yarn test