Refactor syntax test to use generalLayer rules and update prepare scr… #334
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 | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request_target: | |
types: | |
- opened | |
- reopened | |
- edited | |
- synchronize | |
jobs: | |
e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: 'pnpm' | |
- run: pnpm submodules | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
- run: pnpm install | |
- run: pnpm exec playwright install --with-deps | |
- run: pnpm run build | |
- run: pnpm e2e |