Skip to content

Commit

Permalink
added simple playwright test
Browse files Browse the repository at this point in the history
  • Loading branch information
ma4nn committed Aug 19, 2024
1 parent f9e52ca commit a6df033
Show file tree
Hide file tree
Showing 8 changed files with 509 additions and 7 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: [ master ]
pull_request:
branches: [ 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: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
.idea
dist
dist
node_modules/
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/
/tmp
Loading

0 comments on commit a6df033

Please sign in to comment.