frontend CI testing

master
selfisekai 2020-10-31 19:15:18 +01:00
parent 13cd85e19a
commit cc2256a631
1 changed files with 13 additions and 0 deletions

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