Skip to content

Commit

Permalink
tests(fix): add playwright testing
Browse files Browse the repository at this point in the history
  • Loading branch information
davidsneighbour committed Oct 27, 2024
1 parent 125e0f7 commit 2ef0215
Show file tree
Hide file tree
Showing 6 changed files with 211 additions and 10 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Playwright Tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -318,3 +318,7 @@ fabric.properties
!.idea/runConfigurations

# End of https://www.toptal.com/developers/gitignore/api/phpstorm+all
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
Loading

0 comments on commit 2ef0215

Please sign in to comment.