15 lines
244 B
YAML
15 lines
244 B
YAML
test-frontend:
|
|
image: node:lts-alpine
|
|
stage: test
|
|
before_script:
|
|
- cd frontend
|
|
stage: test
|
|
script:
|
|
- yarn install
|
|
- yarn lint
|
|
cache:
|
|
paths:
|
|
- frontend/node_modules/
|
|
- frontend/.yarn
|
|
except:
|
|
- master |