chore: bump @types/node from 20.19.27 to 25.0.3 #16170
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: cSpell-cli | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| # Run on demand | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| cspell: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| - name: Setup Node and Pnpm | |
| uses: ./.github/actions/setup-node | |
| - # It is necessary to run `pnpm i` in order install some dictionaries. | |
| name: prepare-cspell-action | |
| run: pnpm i | |
| - run: pnpm --filter @cspell/cspell-types --filter @cspell/cspell-bundled-dicts run build | |
| - name: Restore CSpell cache | |
| uses: actions/[email protected] | |
| with: | |
| key: cspell-cache-v2-${{ runner.os }}-${{ hashFiles('**/*.ts', '**/*.md') }} | |
| path: | | |
| .cspellcache | |
| restore-keys: | | |
| cspell-cache-v2-${{ runner.os }}- | |
| - name: cspell@latest | |
| run: npx cspell@latest --cache --cache-strategy=content --cache-location=.cspellcache --exclude="yarn2" --no-progress "**" --no-cache --report=typos |