chore(deps): Bump lodash from 4.17.21 to 4.17.23 in /examples/next/block-support #221
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: Package Code Quality | |
| on: | |
| pull_request: | |
| branches: [canary] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| setup-node: | |
| name: Setup Dependencies | |
| uses: ./.github/workflows/node-setup.yml | |
| strategy: | |
| matrix: | |
| node-version: [22] | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| check_lint: | |
| name: Validate package linting | |
| runs-on: ubuntu-latest | |
| needs: [setup-node] | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: ./.github/actions/cache-restore | |
| - name: Check Linting | |
| run: npm run lint | |
| check_format: | |
| name: Validate package formatting | |
| runs-on: ubuntu-latest | |
| needs: [setup-node] | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js | |
| uses: ./.github/actions/cache-restore | |
| - name: Check Formatting | |
| run: npm run test:format |