From e2f8bba5030de18da5cd9922c6a6123a19271aab Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Fri, 2 Dec 2022 01:05:07 +0100 Subject: [PATCH] Add CI configuration --- .woodpecker.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..2c173ca --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,17 @@ +pipeline: + install: + image: node + commands: + - npm install + build: + image: node + commands: + - npm run build + lint: + image: node + commands: + - npm run lint + test: + image: node + commands: + - npm run test