chore(lib): replace pod #51
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Workflow label | |
name: Build and publish to NPM | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
publish: | |
name: Publish to NPM | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- run: npm i -g typescript | |
- run: yarn install --immutable | |
- run: yarn prepare | |
- uses: JS-DevTools/npm-publish@v3 # https://github.com/JS-DevTools/npm-publish | |
with: | |
token: ${{ secrets.NPM_TOKEN }} |