fix(deps): update dependency lru-cache to v10 #4249
Workflow file for this run
This file contains 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: Build Docs | |
on: | |
pull_request: | |
paths: | |
- 'typedoc.json' | |
- 'tsconfig.json' | |
- 'scripts/build-docs.js' | |
- 'package*.json' | |
- 'lib/**/*.ts' | |
- 'lib/**/*.js' | |
- 'docs/**' | |
- '.github/workflows/docs.yml' # this file | |
- '!ci-jobs/**' | |
- '!**/test/**' | |
push: | |
paths: | |
- 'typedoc.json' | |
- 'tsconfig.json' | |
- 'scripts/build-docs.js' | |
- 'package*.json' | |
- 'lib/**/*.ts' | |
- 'lib/**/*.js' | |
- 'docs/**' | |
- '.github/workflows/docs.yml' # this file | |
- '!ci-jobs/**' | |
- '!**/test/**' | |
jobs: | |
docs: | |
name: Docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3 | |
- name: Install dependencies (Node.js) | |
uses: bahmutov/npm-install@v1 | |
with: | |
useRollingCache: true | |
install-command: npm ci | |
- name: Install dependencies (Python) | |
run: npm run install-docs-deps | |
- name: Build Docs | |
run: npm run build:docs |