Skip to content

Commit

Permalink
Move playwright workflow
Browse files Browse the repository at this point in the history
Update with local actions and Python specific requirements
  • Loading branch information
mgriffin-scottlogic committed Jun 14, 2024
1 parent 466ae1c commit 8af9ad1
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 27 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/playwright.yml
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
27 changes: 0 additions & 27 deletions playwright/.github/workflows/playwright.yml

This file was deleted.

0 comments on commit 8af9ad1

Please sign in to comment.