Skip to content

Commit

Permalink
Merge pull request #8 from bearsdotzone/dev
Browse files Browse the repository at this point in the history
Merge dev to main
  • Loading branch information
bearsdotzone authored Jan 30, 2024
2 parents 5a2252f + 5236bf8 commit b15a52a
Show file tree
Hide file tree
Showing 17 changed files with 7,539 additions and 8,813 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@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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ node_modules
!.env.example
.vercel
.output
/test-results/
/playwright-report/
/playwright/.cache/
Loading

0 comments on commit b15a52a

Please sign in to comment.