-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Prevent auto-update of visual regression screenshots (#902)
* ci: Prevent auto-update of visual regression screenshots * ci: Create workflow to update screenshots * fix: Correct label name * fix: Fix Playwright version * fix: Update autocommit
- Loading branch information
Showing
2 changed files
with
36 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Update Visual Regression Snapshots | ||
|
||
on: | ||
pull_request: | ||
types: [labeled, synchronize] | ||
|
||
jobs: | ||
update-snapshots: | ||
if: github.event.pull_request.state != 'closed' && (github.event.label.name == 'update-snapshots' || contains( github.event.pull_request.labels.*.name, 'update-snapshots')) | ||
runs-on: ubuntu-latest | ||
container: | ||
image: mcr.microsoft.com/playwright:v1.40.1 | ||
options: --user 1001:1000 | ||
|
||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v4 | ||
- name: Setup NPM cache | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "20" | ||
cache: "npm" | ||
- name: Install node dependencies | ||
run: npm ci | ||
- name: Build frontend | ||
run: npm run build | ||
- name: Build mock website | ||
run: npm run build:e2e | ||
- name: Start server | ||
run: npm run start:visual-preview | ||
- name: Run Playwright tests | ||
run: npm run test:visual -- --update-snapshots | ||
- name: Commit screenshots | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
commit_message: "chore: updated snapshots" |
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