17 lines
374 B
YAML
17 lines
374 B
YAML
test_and_build_frontend:
|
|
image: node:latest
|
|
stage: build
|
|
cache:
|
|
key: frontend
|
|
paths:
|
|
- frontend/.yarn
|
|
- frontend/node_modules
|
|
script:
|
|
- cd frontend
|
|
- yarn install --cache-folder .yarn --frozen-lockfile
|
|
- yarn lint
|
|
- yarn build
|
|
artifacts:
|
|
paths:
|
|
- frontend/dist/
|