From 83ba3764c6c6122949807306e825d013847a2ad9 Mon Sep 17 00:00:00 2001 From: Jef Roosens Date: Thu, 30 Dec 2021 08:29:23 +0100 Subject: [PATCH] Added ci pipeline --- .woodpecker.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..a3fdc49 --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,15 @@ +pipeline: + install: + image: 'node:17.3.0' + commands: + - yarn install + + test: + image: 'node:17.3.0' + group: test + comands: + # Lint the code + - yarn run lint + # Make sure the project can be built + - yarn run build +