chore(deps): bump the minor-and-patch group across 1 directory with 9 updates #335
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Pinned to commit SHAs; Dependabot bumps these (and npm deps) weekly. | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - uses: denoland/setup-deno@22d081ff2d3a40755e97629de92e3bcbfa7cf2ed # v2.0.5 | |
| with: | |
| deno-version: v2.x | |
| - run: npm ci | |
| - name: Check web and documentation formatting | |
| run: npm run format:web:check | |
| - name: Check documentation links | |
| run: npm run docs:check | |
| - run: npm test | |
| - run: npm run build | |
| - name: Typecheck Edge Functions | |
| run: deno check supabase/functions/**/*.ts | |
| - name: Format check Edge Functions | |
| run: deno fmt --check supabase/functions |