fix: too many subscription results for zaps #1515
Workflow file for this run
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: E2E Test | |
on: [push] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: corepack enable | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "pnpm" | |
- uses: pnpm/action-setup@v4 | |
name: Install pnpm | |
with: | |
version: 9.1.4 | |
- run: pnpm install | |
- run: pnpm db:setup | |
working-directory: ./packages/database | |
- run: pnpm playwright install | |
working-directory: ./packages/app | |
- run: pnpm test | |
env: | |
NODE_ENV: test | |
APP_HOST: localhost | |
APP_PORT: 5173 | |
INSTANCE_PASS: ${{ secrets.INSTANCE_PASS }} |