Compare commits

..

2 Commits

Author SHA1 Message Date
Ferdinand Thiessen 2710e74ed3 chore(deps): Update dependencies + tag new version
continuous-integration/woodpecker the build was successful Details
2021-12-13 17:33:38 +01:00
Ferdinand Thiessen af89e7f63d feat(ci): Added woodpecker CI 2021-12-13 17:33:33 +01:00
3 changed files with 19 additions and 20 deletions

19
.woodpecker.yml Normal file
View File

@ -0,0 +1,19 @@
pipeline:
lint:
when:
branch: [main, develop]
image: node:lts-alpine
commands:
- yarn install
- yarn lint
publish:
when:
event: tag
tag: v*
branch: [main, develop]
image: node:lts-alpine
commands:
- yarn publish --non-interactive
secrets: [ node_auth_token ]

View File

@ -1,11 +0,0 @@
pipeline:
deploy:
when:
event: tag
tag: v*
image: node:lts-alpine
commands:
- yarn publish --non-interactive
secrets: [ node_auth_token ]
depends_on:
- lint

View File

@ -1,9 +0,0 @@
pipeline:
lint:
when:
branch: [main, develop]
image: node:lts-alpine
commands:
- yarn install
- yarn lint