Skip to content

Commit

Permalink
chore: wip - just want to see if this runs
Browse files Browse the repository at this point in the history
  • Loading branch information
angela-tran committed Jan 4, 2025
1 parent 0dd0385 commit 185fdad
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/tests-playwright.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Playwright

on:
workflow_dispatch:
push:

defaults:
run:
shell: bash

jobs:
playwright:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4

- uses: actions/setup-python@v5
with:
python-version-file: .github/workflows/.python-version
cache: pip
cache-dependency-path: "**/requirements.txt"
run: pip install -r ./tests/playwright/requirements.txt

- name: Run tests
run: ./tests/playwright/run.sh

0 comments on commit 185fdad

Please sign in to comment.