18 lines
284 B
YAML
18 lines
284 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
|
|
only:
|
|
changes:
|
|
- frontend/* |