ocw/.gitlab-ci.yml

19 lines
291 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
before_script:
- apk add python make
2020-10-31 19:15:18 +01:00
script:
- cd front
- yarn
- yarn lint:fix
front-build:
image: node:15-alpine
2020-10-31 19:35:56 +01:00
before_script:
- apk add python make
2020-10-31 19:15:18 +01:00
script:
- cd front
- yarn
- yarn build