frontend CI testing

This commit is contained in:
selfisekai 2020-10-31 19:15:18 +01:00
parent 13cd85e19a
commit cc2256a631

13
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,13 @@
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