chore(release): add write permissions to release workflow for issues β¦ #7645
Workflow file for this run
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: Test | |
| on: [push] | |
| jobs: | |
| tsc: | |
| runs-on: ubuntu-latest | |
| name: TypeScript | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-node | |
| - name: π§ͺ tsc | |
| run: yarn types | |
| test: | |
| runs-on: ubuntu-latest | |
| name: Lint & test with Node | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-node | |
| - name: Build SDK | |
| run: yarn build | |
| - name: π§ͺ Lint and test with Node ${{ env.NODE_VERSION }} | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| run: | | |
| yarn lint | |
| yarn coverage | |
| yarn validate-translations | |
| - name: π§ͺ Validate CommonJS bundle with Node ${{ env.NODE_VERSION }} | |
| run: yarn validate-cjs |