Migrate to woodpecker #150

Merged
Vylpes merged 4 commits from feature/122-woodpecker-ci into develop 2024-01-26 21:02:17 +00:00
2 changed files with 23 additions and 16 deletions
Showing only changes of commit 09b206cc2b - Show all commits

23
.woodpecker.yml Normal file
View file

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

View file

@ -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/* ]