fix: deserialize imported nested custom types #732
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: Tests | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v6 | |
| - name: Install Wasmtime | |
| run: | | |
| curl https://wasmtime.dev/install.sh -sSf | bash | |
| echo "$HOME/.wasmtime/bin" >> $GITHUB_PATH | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Install Dependencies | |
| run: bun install | |
| - name: Build Transform | |
| run: bun run build:transform | |
| - name: Run Tests (Slow) | |
| run: JSON_USE_FAST_PATH=0 bun run test:ci | |
| - name: Run Tests (Fast) | |
| run: JSON_USE_FAST_PATH=1 bun run test:ci |