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

19 lines
397 B

pipeline:
build:
image: node:19-alpine3.16
commands:
- curl -fsSL https://deno.land/x/install/install.sh | sh
- 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