2023-03-27 16:19:19 +00:00
|
|
|
pipeline:
|
|
|
|
yarn:
|
2023-05-10 15:15:51 +00:00
|
|
|
image: node:alpine
|
2023-03-27 16:19:19 +00:00
|
|
|
commands:
|
|
|
|
- yarn
|
|
|
|
|
|
|
|
yarn_lint:
|
2023-05-10 15:15:51 +00:00
|
|
|
image: node:alpine
|
2023-03-27 16:19:19 +00:00
|
|
|
commands:
|
|
|
|
- yarn lint
|
|
|
|
|
|
|
|
npm_publish:
|
2023-05-10 15:15:51 +00:00
|
|
|
image: node:alpine
|
2023-03-27 16:19:19 +00:00
|
|
|
commands:
|
|
|
|
- echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> .npmrc
|
|
|
|
- echo "email = tyhou13@gmx.com" >> ~/.npmrc
|
|
|
|
- npm publish
|
|
|
|
secrets: [npm_token]
|
|
|
|
when:
|
|
|
|
event: tag
|