fix(dashboard): resource not found when navigating to settings on projects page #4696
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: javascript | |
| on: | |
| pull_request: | |
| paths: | |
| - frontend/** | |
| - engine/sdks/typescript/** | |
| - rivetkit-typescript/** | |
| jobs: | |
| quality: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: biomejs/setup-biome@v2 | |
| with: | |
| version: latest | |
| - name: Run Biome | |
| run: biome check . --reporter=github | |
| tsc: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| - run: pnpm install | |
| - run: pnpm turbo build:engine | |
| - name: Run TypeScript Compiler | |
| run: pnpm ts-check | |
| working-directory: ./frontend |