Add Hopx provider support and template echo #57
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: Test Sandbox | |
| on: | |
| push: | |
| paths: | |
| - "apps/sandbox/**" | |
| - "apps/modal-sandbox/**" | |
| - ".github/workflows/test-sandbox.yml" | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Bun | |
| run: | | |
| curl -fsSL https://bun.sh/install | bash | |
| echo "BUN_INSTALL=/home/runner/.bun" >> $GITHUB_ENV | |
| echo "PATH=/home/runner/.bun/bin:$PATH" >> $GITHUB_ENV | |
| - name: Set up Deno | |
| uses: denoland/setup-deno@v2 | |
| - name: Run tests (sandbox) | |
| working-directory: apps/sandbox | |
| run: deno task test | |
| - name: Run tests (modal sandbox) | |
| working-directory: apps/modal-sandbox | |
| run: | | |
| bun install | |
| bun run test |