ci: bump action versions to latest #11
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: | |
| branches: | |
| - main | |
| - beta | |
| permissions: | |
| id-token: write | |
| contents: write | |
| issues: write | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Use pnpm | |
| uses: pnpm/action-setup@v6 | |
| - name: Use Node.js 26.x | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 26 | |
| registry-url: 'https://registry.npmjs.org' | |
| cache: 'pnpm' | |
| - name: Install Dependencies | |
| run: pnpm install | |
| - name: Biome CI | |
| run: pnpm biome ci . | |
| - name: Test | |
| run: pnpm test:ci | |
| - name: Build | |
| run: pnpm build | |
| - uses: codecov/codecov-action@v7 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| - name: Semantic Release | |
| uses: cycjimmy/semantic-release-action@v6 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| semantic_version: 25 | |
| extra_plugins: | | |
| @semantic-release/changelog@^6 | |
| @semantic-release/git@^10 |