chore(deps): update dependency @types/node to v20.19.20 (#1426) #1461
This file contains hidden or 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
| name: publish | |
| on: | |
| push: | |
| branches: | |
| - master | |
| jobs: | |
| publish-npm: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: SCM | |
| uses: actions/checkout@v2 | |
| - name: Setup Node Environment | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: 16 | |
| - name: Install Dependencies and Build | |
| run: | | |
| yarn | |
| yarn build | |
| - name: Semantic Release | |
| run: | | |
| yarn release | |
| env: | |
| GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| GIT_CREDENTIALS: ${{ secrets.GIT_CREDENTIALS }} | |
| GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }} | |
| GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }} |