fix(sentry): Revert redundant 404 filter in app.py #733
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: Lint Web Frontend | |
| on: | |
| - push | |
| - pull_request | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint-web-frontend: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Set up Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Install dependencies | |
| run: cd web-frontend && bun install | |
| - name: Test bundled skill scripts | |
| run: | | |
| bash skills/run-ci/scripts/run-ci.test.sh | |
| node --test skills/screenshot-xlsx/scripts/render-xlsx.test.mjs | |
| node --test skills/screenshot-webpage/scripts/network-policy.test.mjs | |
| - name: Lint | |
| run: cd web-frontend && bun run lint | |
| - name: Build (For checking static build errors only) | |
| run: cd web-frontend && bun run build |