chore(deps): bump next from 16.2.0 to 16.2.11 in the npm_and_yarn group across 1 directory #12550
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: Check | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| types: [opened, edited, reopened, synchronize] | |
| branches: | |
| - "**" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
| env: | |
| NODE_OPTIONS: --max_old_space_size=10240 | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: Setup node@26 | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: 26 | |
| package-manager-cache: false | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9 | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Check formatting | |
| run: node --run format:check | |
| - name: Build packages | |
| run: node --run build | |
| - name: Lint | |
| run: node --run lint | |
| - name: Verify rules | |
| run: node --run check:rules | |
| - name: Lint MDX | |
| run: node --run lint:mdx | |
| - name: Check website types | |
| run: pnpm -F "./apps/website" run types:check | |
| - name: Verify generated files are up to date | |
| run: git --no-pager diff --exit-code |