ocw/.gitlab-ci.yml

19 lines
315 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:
2020-10-31 19:43:07 +01:00
- apk add python build-base cmake
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:
2020-10-31 19:43:07 +01:00
- apk add python build-base cmake
2020-10-31 19:15:18 +01:00
script:
- cd front
- yarn
- yarn build