fix: fix asynconNextNode (#21)
#90
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 | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Setup bun | |
| uses: oven-sh/setup-bun@v1 | |
| with: | |
| bun-version: 1.2.9 | |
| - name: Install dependencies, build, and test | |
| run: bun install | |
| - run: bunx playwright@1.51.1 install | |
| - run: bunx playwright@1.51.1 install-deps | |
| - run: bun run build | |
| - run: bun run bundlewatch | |
| - run: bun run test |