chore(deps): update dependency ts-jest to v29.2.6 (#894) #553
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: Release | |
| on: | |
| push: | |
| tags-ignore: | |
| - '*.*' | |
| branches: | |
| - master | |
| jobs: | |
| release: | |
| name: Release | |
| environment: PROD | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js ${{matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{matrix.node-version }} | |
| - name: Install | |
| run: yarn --frozen-lockfile | |
| - name: Unit Test | |
| run: yarn run test | |
| - name: Build | |
| run: yarn run build | |
| - name: Release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| run: npx semantic-release |