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 +