Fix error ui unmount bug. Resolves #209 (#210) #163
This file contains 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: Build and Test | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: "*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "22" | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9.4.0 | |
- run: pnpm install --frozen-lockfile | |
- run: pnpm run build | |
- run: pnpm test | |
- run: pnpm run check-format | |
- run: pnpm run lint |