diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..c1d3f27 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,16 @@ +image: node:latest + +# This folder is cached between builds +cache: + paths: + - node_modules/ + +build_typescript: + script: + - npm install + - tsc + +test_lint: + script: + - npm install + - npm run lint