-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial setup of playwright See #4033 for a test demoing the "result" and good practice.
- Loading branch information
1 parent
52cb8e2
commit e1905e5
Showing
16 changed files
with
2,425 additions
and
652 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: 'Playwright Atomic' | ||
description: 'Run Playwright tests for Atomic' | ||
runs: | ||
using: composite | ||
steps: | ||
- name: Install Playwright Browsers | ||
run: npx playwright install --with-deps | ||
shell: bash | ||
- name: Run Playwright tests | ||
run: npx playwright test | ||
working-directory: packages/atomic | ||
shell: bash | ||
- uses: actions/upload-artifact@v4 | ||
if: always() | ||
with: | ||
name: atomic-playwright-report | ||
path: packages/atomic/playwright-report/ | ||
retention-days: 5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.