Skip to content

fix(sentry): Revert redundant 404 filter in app.py #733

fix(sentry): Revert redundant 404 filter in app.py

fix(sentry): Revert redundant 404 filter in app.py #733

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