fix: bump next to 16.0.7 to fix cve-2025-55182 #404
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: | |
| pull_request: | |
| branches: ['*'] | |
| types: [opened, reopened, synchronize] | |
| push: | |
| branches: ['main'] | |
| merge_group: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| env: | |
| FORCE_COLOR: 3 | |
| permissions: | |
| contents: read | |
| checks: write | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup | |
| uses: ./tooling/github/setup | |
| - name: Copy env | |
| shell: bash | |
| run: cp .env.example .env | |
| - name: Lint | |
| run: pnpm lint && pnpm lint:ws | |
| format: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup | |
| uses: ./tooling/github/setup | |
| - name: Format | |
| run: pnpm format | |
| typecheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup | |
| uses: ./tooling/github/setup | |
| - name: Copy env | |
| shell: bash | |
| run: cp .env.example .env | |
| - name: Typecheck | |
| run: pnpm typecheck | |
| # TODO: Add test CI |