diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..6fe2dd9 --- /dev/null +++ b/.gitlab-ci.yml @@ -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