diff --git a/.woodpecker/integration.yml b/.woodpecker/integration.yml new file mode 100644 index 0000000..573b8c6 --- /dev/null +++ b/.woodpecker/integration.yml @@ -0,0 +1,16 @@ +steps: + build: + image: node + commands: + - npm ci + - npm run build + when: + event: push + branch: [ hotfix/*, feature/*, renovate/* ] + lint: + image: node + commands: + - npm run lint + when: + event: push + branch: [ hotfix/*, renovate/* ] \ No newline at end of file