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