Add e2e tests for login, survey and dashboard #2
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 : ZenML Playwright test pipelines | |
on: | |
pull_request: | |
types: [opened, synchronize, ready_for_review] | |
jobs: | |
run_zenml_tests: | |
runs-on: ubuntu-latest | |
env: | |
ZENML_ANALYTICS_OPT_IN: "false" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Install dependencies | |
run: npm install -g pnpm && pnpm install | |
- name: Install Playwright Browsers | |
run: pnpm exec playwright install --with-deps | |
- name: Run Playwright tests | |
run: pnpm exec playwright test | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.12" | |
- name: Install ZenML | |
run: | | |
pip install --upgrade pip | |
pip install zenml[server] | |
- name: Run ZenML Simple Pipeline | |
run: python e2e-tests/fixtures/simple-pipeline.py | |
- name: ZenMl up | |
run: | | |
zenml init | |
zenml up | |
- name: Run Playwright Tests | |
working-directory: e2e-tests | |
run: npx playwright test --workers=1 | |
- name: Verify ZenML Installation | |
run: zenml version |