Add woodpecker config #6

Merged
nbsp merged 1 commit from woodpecker into master 2022-07-08 12:06:31 +00:00
Showing only changes of commit 9a1e32daad - Show all commits

20
.woodpecker.yml Normal file
View file

@ -0,0 +1,20 @@
pipeline:
lint:
when:
event:
- push
- pull_request
image: node:16
commands:
- npm install
- npm run lint
test:
when:
event:
- push
- pull_request
image: node:16
commands:
- npm install
- npm run test