lemmy-js-client/.woodpecker.yml

27 lines
498 B
YAML
Raw Normal View History

2024-01-29 01:09:04 +00:00
variables:
- &install_pnpm "corepack enable pnpm"
steps:
2024-01-29 01:09:04 +00:00
install:
image: node:alpine
commands:
2024-01-29 01:09:04 +00:00
- *install_pnpm
- pnpm i
2024-01-29 01:09:04 +00:00
lint:
image: node:alpine
commands:
2024-01-29 01:09:04 +00:00
- *install_pnpm
- pnpm lint
npm_publish:
image: node:alpine
commands:
2024-01-29 01:11:58 +00:00
- *install_pnpm
- echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc
- echo "email = tyhou13@gmx.com" >> ~/.npmrc
- npm publish
secrets: [npm_token]
when:
event: tag