From cc2256a63162d2d2ed47153a6af0201e4becb14a Mon Sep 17 00:00:00 2001 From: selfisekai Date: Sat, 31 Oct 2020 19:15:18 +0100 Subject: [PATCH] frontend CI testing --- .gitlab-ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .gitlab-ci.yml 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