ocw/.gitlab-ci.yml

15 lines
205 B
YAML
Raw Normal View History

2020-10-31 19:15:18 +01:00
front-lint:
image: node:15-alpine
2020-10-31 19:35:56 +01:00
allow_failure: true
2020-10-31 19:15:18 +01:00
script:
- cd front
- yarn
- yarn lint:fix
front-build:
image: node:15-alpine
script:
- cd front
- yarn
- yarn build