You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wattpad-deno/.woodpecker/.node.yml

20 lines
392 B

pipeline:
build:
image: denoland/deno:debian
commands:
- apt update
- apt install nodejs npm
- deno test -A buildNode.ts
deploy:
image: plugins/npm
settings:
token: NPM_API_KEY
folder: npm
secrets: [NPM_API_KEY]
when:
event: tag
depends_on:
- lint
- test