cleanup existing CI a bit and add NPM CI
ci/woodpecker/push/lint Pipeline was successful Details
ci/woodpecker/push/test Pipeline was successful Details
ci/woodpecker/push/node Pipeline failed Details

master
Drake 1 year ago
parent 6392975765
commit 8f146cedec

@ -0,0 +1,5 @@
pipeline:
lint:
image: denoland/deno:alpine
commands:
- deno lint

@ -0,0 +1,17 @@
pipeline:
build:
image: denoland/deno:alpine
commands:
- deno test -A --unstable buildNode.ts
deploy:
image: plugins/npm
settings:
token: NPM_API_KEY
folder: npm
secrets: [NPM_API_KEY]
when:
event: tag
depends_on:
- lint
- test

@ -3,7 +3,3 @@ pipeline:
image: denoland/deno:alpine
commands:
- deno test -A --unstable tests/index.ts
lint:
image: denoland/deno:alpine
commands:
- deno lint
Loading…
Cancel
Save