Add CI configuration
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Manuel Thalmann 2022-12-02 01:05:07 +01:00
parent 4d45e8e576
commit e2f8bba503

17
.woodpecker.yml Normal file
View file

@ -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