ocw/.gitlab-ci.yml

14 lines
183 B
YAML

front-lint:
image: node:15-alpine
script:
- cd front
- yarn
- yarn lint:fix
front-build:
image: node:15-alpine
script:
- cd front
- yarn
- yarn build