26 lines
324 B
YAML
26 lines
324 B
YAML
|
image: node:lts
|
||
|
|
||
|
cache:
|
||
|
paths:
|
||
|
- frontend/node_modules
|
||
|
|
||
|
before_script:
|
||
|
- cd frontend && npm install
|
||
|
- cd -
|
||
|
|
||
|
stages:
|
||
|
- lint
|
||
|
- test
|
||
|
|
||
|
FrontendLint:
|
||
|
stage: lint
|
||
|
script:
|
||
|
- cd frontend && npm run lint
|
||
|
allow_failure: true
|
||
|
|
||
|
FrontendTest:
|
||
|
stage: test
|
||
|
script:
|
||
|
- ls -lah
|
||
|
- cd frontend && npm test
|