Add .gitlab-ci.yml

This commit is contained in:
Tao Bojlén 2019-07-13 18:49:53 +00:00
parent 25a36cd170
commit 97338c6897
1 changed files with 14 additions and 0 deletions

14
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,14 @@
test-frontend:
image: node:lts-alpine
stage: test
before_script:
- cd frontend
stage: test
script:
- yarn install
- yarn lint
cache:
- frontend/node_modules/
- frontend/.yarn
except:
- master