From f96e66eadec47f264985e9fd7e9ae9e5e2d24941 Mon Sep 17 00:00:00 2001 From: Marcel Waldvogel Date: Fri, 19 Nov 2021 14:52:53 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Enable=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitlab-ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..2ecee86 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,22 @@ +image: node:latest + +cache: + paths: + - node_modules/ + +test_latest: + script: + - yarn + - yarn test + +test_14: + image: node:14 + script: + - yarn + - yarn test + +test_16: + image: node:16 + script: + - yarn + - yarn test