Bump @docusaurus/tsconfig from 3.6.0 to 3.9.2 #330
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: pre-commit | |
| on: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.14" | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ">=18.0" | |
| - name: Install dependencies | |
| run: npm install | |
| - uses: pre-commit/action@v3.0.0 | |
| - name: Run eslint and prettier linting checks | |
| run: | | |
| npm cache clean --force | |
| npm run lint |