ocw/.gitlab-ci.yml

19 lines
315 B
YAML

front-lint:
image: node:15-alpine
allow_failure: true
before_script:
- apk add python build-base cmake
script:
- cd front
- yarn
- yarn lint:fix
front-build:
image: node:15-alpine
before_script:
- apk add python build-base cmake
script:
- cd front
- yarn
- yarn build