Update dependency ts-jest to v29.4.0 (#604) #578
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: Build and release the action | |
| on: | |
| push: | |
| branches: [master] | |
| jobs: | |
| build: | |
| name: Build | |
| uses: ./.github/workflows/build.yml | |
| secrets: inherit | |
| release: | |
| runs-on: ubuntu-24.04 | |
| name: "Build and release action" | |
| needs: [build] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: true | |
| - name: Configure git | |
| uses: smartlyio/github-actions@git-init-userinfo-v1 | |
| - name: Release flow | |
| uses: smartlyio/github-actions@release-action-node-v1 | |
| with: | |
| token: "${{ secrets.GITHUB_TOKEN }}" |