You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if pnpm exec playwright --version >/dev/null 2>&1; then
90
+
echo "Playwright detected in workspace; installing chromium"
91
+
pnpm exec playwright install --with-deps chromium
92
+
else
93
+
echo "Playwright not in workspace; skipping browser install"
94
+
fi
95
+
85
96
- name: Run tests in affected workspaces
86
97
if: steps.affected.outputs.filters != ''
87
98
working-directory: app
@@ -95,8 +106,8 @@ jobs:
95
106
branch: bump/test-widgets-${{ env.VERSION }}
96
107
delete-branch: true
97
108
base: main
98
-
commit-message: "chore: bump test-widgets to ${{ env.VERSION }}"
99
-
title: "chore: bump test-widgets to ${{ env.VERSION }}"
109
+
commit-message: 'chore: bump test-widgets to ${{ env.VERSION }}'
110
+
title: 'chore: bump test-widgets to ${{ env.VERSION }}'
100
111
body: |
101
112
Automated bump of `@viamrobotics/test-widgets` to `${{ env.VERSION }}` following a release in [viamrobotics/test-widgets](https://github.com/viamrobotics/test-widgets/releases/tag/v${{ env.VERSION }}).
0 commit comments