feat(ci): Added woodpecker CI
continuous-integration/woodpecker the build failed
Details
continuous-integration/woodpecker the build failed
Details
This commit is contained in:
parent
71949bbd20
commit
b2c93cda2a
|
@ -0,0 +1,16 @@
|
|||
pipeline:
|
||||
validate:
|
||||
image: node:lts-alpine
|
||||
commands:
|
||||
- yarn install
|
||||
- yarn valid
|
||||
deploy:
|
||||
image: node:lts-alpine
|
||||
commands:
|
||||
- echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" > .npmrc
|
||||
- yarn publish --non-interactive
|
||||
secrets: [ node_auth_token ]
|
||||
when:
|
||||
event: tag
|
||||
tag: v*
|
||||
|
|
@ -1,4 +1,5 @@
|
|||
# Flaschengeist types
|
||||
![status-badge](https://ci.os-sc.org/api/badges/Flaschengeist/flaschengeist-types/status.svg)
|
||||
|
||||
This package provides the TypeScript typings needed for developing with the [Flaschengeist](https://flaschengeist.dev/Flaschengeist/flaschengeist) and the [Flaschengeist-Plugin](https://flaschengeist.dev/Flaschengeist/flaschengeist-frontend) API.
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@
|
|||
"typings": "types/index.d.ts",
|
||||
"scripts": {
|
||||
"valid": "tsc --noEmit",
|
||||
"format": "prettier --config ./package.json --write '{,!(node_modules)/**/}*.ts'"
|
||||
"format": "prettier --config ./package.json --write '{,!(node_modules)/**/}*.ts'"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"vue": "^3.2.20",
|
||||
|
|
Loading…
Reference in New Issue