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