chore(deps): update dependency @sentry/browser to v7.119.1 [security] #866
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: Web Client Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - ".github/workflows/ci.yml" | |
| - "clients/web/**" | |
| pull_request: | |
| paths: | |
| - ".github/workflows/ci.yml" | |
| - "clients/web/**" | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v2 | |
| with: | |
| version: 8 | |
| - name: Use Node.js 20 | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: "pnpm" | |
| cache-dependency-path: "clients/web/pnpm-lock.yaml" | |
| - name: Install dependencies | |
| working-directory: clients/web | |
| run: pnpm install install | |
| - name: Format | |
| working-directory: clients/web | |
| run: pnpm prettier --check '**/*.{ts,tsx,js,jsx,json}' | |
| - name: Linting | |
| working-directory: clients/web | |
| run: pnpm lint | |
| - name: Unit tests | |
| working-directory: clients/web | |
| run: pnpm test -- --run |