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