diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000000000000000000000000000000000000..a1045f01db64d54f7736046edc3b100cbf92e31a --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,14 @@ +image: node:8.11.1-stretch + +before_script: + - apt-get update --q && apt-get install -y -qq python3 python3-venv + - git config user.email "gitlab-ci@example.com" + - git fetch origin master + - git merge origin/master --no-ff + +stages: + - test + +test: + stage: test + script: echo "Running tests"