fix(deps): update patch updates #25
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: Validate Lockfile Platforms | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| branches: | |
| - 'main' | |
| - 'release*' | |
| paths: | |
| - 'package-lock.json' | |
| push: | |
| branches: | |
| - 'main' | |
| - 'release*' | |
| paths: | |
| - 'package-lock.json' | |
| jobs: | |
| validate-lockfile: | |
| name: Validate Lockfile Platforms | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 | |
| with: | |
| node-version: '22' | |
| - name: Validate platform bindings in lockfile | |
| run: node scripts/validate-lockfile-platforms.js |