fix(skeleton): do not use router hook inside useAuthenticatedFetch #25
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 | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use pnpm | |
| uses: pnpm/action-setup@v3 | |
| - name: Use Node.js 22.x | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: 'pnpm' | |
| - name: Install Dependencies | |
| run: pnpm install | |
| - name: Biome CI | |
| run: pnpm biome ci . | |
| - name: Build | |
| run: pnpm build | |
| - name: Semantic Release | |
| uses: cycjimmy/semantic-release-action@v3 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| id: semantic | |
| with: | |
| semantic_version: 19.0.5 | |
| extra_plugins: | | |
| @semantic-release/changelog@6.0 | |
| @semantic-release/git@10.0 |