Update dependency glob to v11.1.0 #2169
Workflow file for this run
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
| on: push | |
| name: CI | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - run: make node_modules | |
| - run: make lint | |
| - run: make typecheck | |
| up-to-date: | |
| name: Up-to-date scripts/docs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - run: make node_modules | |
| - run: make build | |
| env: | |
| NODE_OPTIONS: "--max_old_space_size=4096" | |
| - run: make docgen | |
| - name: Check uncommitted changes | |
| run: git add --intent-to-add . && git diff --exit-code --stat |