-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update with local actions and Python specific requirements
- Loading branch information
1 parent
466ae1c
commit 8af9ad1
Showing
2 changed files
with
28 additions
and
27 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Playwright Tests | ||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
jobs: | ||
test: | ||
timeout-minutes: 10 | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
- name: Set up environment | ||
uses: ./.github/actions/set-up-environment | ||
- name: Setup Python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: '3.11' | ||
- name: Install Playwright Dependencies | ||
run: npm run playwright-install | ||
- name: Run Playwright tests | ||
run: npm run playwright-test | ||
- uses: actions/upload-artifact@v4 | ||
if: always() | ||
with: | ||
name: playwright-report | ||
path: playwright/playwright-report/ | ||
retention-days: 30 |
This file was deleted.
Oops, something went wrong.