diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..3d0f730 --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,23 @@ +steps: + build: + image: node + commands: + - npm ci + - npm run build + when: + event: push + branch: [ hotfix/*, feature/*, renovate/*, develop, main ] + lint: + image: node + commands: + - npm run lint + when: + event: push + branch: [ hotfix/*, feature/*, renovate/*, develop, main ] + test: + image: node + commands: + - npm test + when: + event: push + branch: [ hotfix/*, feature/*, renovate/*, develop, main ] \ No newline at end of file diff --git a/.woodpecker/integration.yml b/.woodpecker/integration.yml deleted file mode 100644 index 9ef4981..0000000 --- a/.woodpecker/integration.yml +++ /dev/null @@ -1,16 +0,0 @@ -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/*, feature/*, renovate/* ] \ No newline at end of file