diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..d6e46d0 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,25 @@ +default: + before_script: + - yarn + +node12: + image: node:12 + allow_failure: true + script: + - yarn test + +node13: + image: node:13 + allow_failure: true + script: + - yarn test + +node14: + image: node:14 + script: + - yarn test + +node15: + image: node:15 + script: + - yarn test