Skip to content

Commit

Permalink
feat: playwrght tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards1230 committed Jan 3, 2024
1 parent 54244b8 commit 537b9f6
Show file tree
Hide file tree
Showing 24 changed files with 7,731 additions and 66 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]
pull_request:
branches: [main]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- 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@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,8 @@ script.ts

terraform/**/*.terraform*
terraform/**/terraform.tfstate*
**/*.tfvars
**/*.tfvars
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
Binary file modified bun.lockb
Binary file not shown.
Loading

0 comments on commit 537b9f6

Please sign in to comment.