Add .gitlab-ci.yml

pull/1/head
Tao Bojlén 2019-07-13 18:49:53 +00:00
rodzic 25a36cd170
commit 97338c6897
1 zmienionych plików z 14 dodań i 0 usunięć

14
.gitlab-ci.yml 100644
Wyświetl plik

@ -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