From 97338c6897c33073007c4ee4cc7ec5098485d508 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tao=20Bojl=C3=A9n?= <2803708-taobojlen@users.noreply.gitlab.com> Date: Sat, 13 Jul 2019 18:49:53 +0000 Subject: [PATCH] Add .gitlab-ci.yml --- .gitlab-ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..125cce7 --- /dev/null +++ b/.gitlab-ci.yml @@ -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 \ No newline at end of file