mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-01 10:09:55 +00:00
21 lines
391 B
YAML
21 lines
391 B
YAML
|
pipeline:
|
||
|
yarn:
|
||
|
image: node:17-alpine
|
||
|
commands:
|
||
|
- yarn
|
||
|
|
||
|
yarn_lint:
|
||
|
image: node:17-alpine
|
||
|
commands:
|
||
|
- yarn lint
|
||
|
|
||
|
npm_publish:
|
||
|
image: node:17-alpine
|
||
|
commands:
|
||
|
- echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc
|
||
|
- echo "email = tyhou13@gmx.com" >> ~/.npmrc
|
||
|
- npm publish
|
||
|
secrets: [npm_token]
|
||
|
when:
|
||
|
event: tag
|