From a47ed4d26c6e96e6c8770f410eb0e1c5d6b5ab14 Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Wed, 23 Dec 2020 18:36:41 +0100 Subject: [PATCH] Add .gitlab-ci.yml --- .gitlab-ci.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..0fa2eb38 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,19 @@ +image: node:latest + +stages: + - test + +lint: + stage: test + script: + - npm run lint + +compile: + stage: test + script: + - npm run build + +#test: +# stage: test +# script: +# - npm test