X-Git-Url: https://git.r.bdr.sh/rbdr/grafn/blobdiff_plain/e4c7bafd276049c805039b240e0a83346c31f41b..07b929505aaa8d5168ab7b03822ec002740af20f:/.gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..cc95c38 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,18 @@ +image: node:14 + +stages: + - lint + - test + +before_script: + - npm install + +lint: + stage: lint + script: + - npm run lint + +test: + stage: test + script: + - npm test