Fix more serializer stuff #596
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
| name: CI | |
| on: | |
| - push | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| version: 8 | |
| run_install: true | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: "pnpm" | |
| - name: Clean | |
| run: pnpm recursive run clean | |
| env: | |
| CI: true | |
| - name: Build | |
| run: pnpm recursive run build | |
| env: | |
| CI: true | |
| - name: Begin Tests | |
| run: pnpm recursive run test | |
| env: | |
| CI: true |