chore(deps): update dependency linkinator to v7.5.3 #18997
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: Lint | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| merge_group: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| - uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6 | |
| with: | |
| cache: 'npm' | |
| cache-dependency-path: | | |
| package-lock.json | |
| node-version: '22' | |
| - name: Bootstrap | |
| run: npm ci --ignore-scripts | |
| - name: Lint | |
| run: | | |
| npm run lint | |
| npm run lint:examples | |
| - name: Lint doc files | |
| run: | | |
| npm run compile | |
| NODE_OPTIONS=--max-old-space-size=6144 npm run docs | |
| npm run docs:test |