use React.use() for Suspense, useEffectEvent for effect callbacks #6
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: jdx/mise-action@v4 | |
| - name: install:ts | |
| run: mise run install:ts | |
| - name: check:fmt | |
| run: mise run check:fmt | |
| - name: check:types | |
| run: mise run check:types | |
| - name: test | |
| run: mise run test | |
| - name: build | |
| run: mise run build |