[pre-commit.ci] pre-commit autoupdate #3996
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: javascript checks | |
| on: [push, pull_request, workflow_dispatch, workflow_call] | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| strategy: | |
| matrix: | |
| os: [ubuntu, macos, windows] | |
| runs-on: ${{ matrix.os }}-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Pull changes | |
| run: git pull | |
| continue-on-error: true | |
| - uses: oven-sh/setup-bun@v2 | |
| - name: Install modules | |
| run: bun install | |
| - name: Run ESLint | |
| run: bun lint | |
| - name: Run Svelte Check | |
| run: | | |
| bun src/lib/utils/generateDeclarations.js | |
| bun -b check |