Bump the wordpress-packages group with 12 updates #179
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 Block Library Checksum | |
| on: | |
| pull_request: | |
| paths: | |
| - 'package-lock.json' | |
| push: | |
| paths: | |
| - 'package-lock.json' | |
| jobs: | |
| check: | |
| name: Check Block Library Checksum | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6.3.0 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: 'npm' | |
| - name: Install npm dependencies | |
| run: npm ci | |
| - name: Run md5sum:check | |
| run: npm run md5sum:check |