diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..57d189f --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,13 @@ +image: node:latest +stages: [ init, run ] + +cache: + stage: init + paths: + - node_modules/ + +test: + stage: run + script: + - npm install + - node example.js \ No newline at end of file