Add basic testing workflow
This commit is contained in:
parent
ccc1ecdb17
commit
09b206cc2b
2 changed files with 23 additions and 16 deletions
23
.woodpecker.yml
Normal file
23
.woodpecker.yml
Normal 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 ]
|
|
@ -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/* ]
|
|
Loading…
Reference in a new issue