Skip to content

fix: basic intent support #846

fix: basic intent support

fix: basic intent support #846

Workflow file for this run

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