Skip to content

Commit fdbc323

Browse files
committed
fix: update xvfb-run command to specify screen resolution for tests
1 parent ea7c4fe commit fdbc323

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- run: pnpm build
3838
- run: pnpm lint
3939
- run: pnpm check
40-
- run: xvfb-run -a pnpm test
40+
- run: xvfb-run -a --server-args="-screen 0 1024x768x24" pnpm test
4141
- run: pnpm ci:package
4242
- run: |
4343
git config --global user.name "googleworkspace-bot"

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ jobs:
3131
- run: pnpm build
3232
- run: pnpm lint
3333
- run: pnpm check
34-
- run: xvfb-run -a pnpm test
34+
- run: xvfb-run -a --server-args="-screen 0 1024x768x24" pnpm test
3535
- run: pnpm ci:package

.github/workflows/update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- run: pnpm ci:update
3232
- run: pnpm lint
3333
- run: pnpm check
34-
- run: pnpm test
34+
- run: xvfb-run -a --server-args="-screen 0 1024x768x24" pnpm test
3535
- name: Check for changes
3636
id: changes
3737
uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # v47.0.0

0 commit comments

Comments
 (0)