mirror of
https://github.com/notherealmarco/WASAPhoto.git
synced 2025-03-14 14:16:15 +01:00
27 lines
290 B
YAML
27 lines
290 B
YAML
image: node:10
|
|
|
|
cache:
|
|
untracked: true
|
|
key: "$CI_BUILD_REF_NAME"
|
|
paths:
|
|
- node_modules/
|
|
|
|
stages:
|
|
- setup
|
|
- test
|
|
- build
|
|
|
|
setup:
|
|
stage: setup
|
|
script:
|
|
- npm install
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- npm run lint
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- npm run build
|