Merge pull request #437 from mkobayashime/renovate/node-25.x #2186
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 |