feat(mobile): add Confirm/Decline actions to booking-request push notifications #475
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: Security Audit | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| audit: | |
| name: Security Audit | |
| runs-on: blacksmith-2vcpu-ubuntu-2404 | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v1 | |
| with: | |
| bun-version: 1.3.0 | |
| cache: true | |
| cache-dependency-path: bun.lock | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Report all vulnerabilities | |
| run: bun pm untrusted || true | |
| - name: Fail on known vulnerabilities | |
| run: bun audit --prod --audit-level=critical |