mirror of
https://github.com/notherealmarco/WASAPhoto.git
synced 2025-03-15 02:39:12 +01:00
28 lines
290 B
YAML
28 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
|