react-logo/.gitlab-ci.yml

26 lines
324 B
YAML
Raw Normal View History

2020-03-09 14:58:40 +01:00
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