fix: basic intent support #846
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: Tests | |
on: | |
push: | |
branches: | |
- main | |
- next | |
- v1 | |
pull_request: | |
branches: | |
- main | |
- next | |
- v1 | |
jobs: | |
e2e: | |
name: 🔍 E2E Testing | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v3 | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: 📥 Download deps | |
run: pnpm i | |
- name: 🎭 Install Playwright | |
run: pnpm exec playwright install --with-deps | |
- name: 📦 Build the packages | |
run: pnpm run build | |
- name: 💣 Run playwright tests | |
run: pnpm run test | |
- uses: actions/upload-artifact@v2 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 |