Add e2e tests for login, survey and dashboard #1
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: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
run_zenml_tests: | |
runs-on: ubunto-latest | |
steps: | |
- name: checkout repository | |
uses: actions/checkout@v3 | |
- 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 | |
- name: ZenMl up | |
run: | | |
zenml init | |
zenml up | |
- name: Run Playwright Tests | |
run: npx playwright test --workers=1 | |
- name: Verify ZenML Installation | |
run: zenml version | |