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
Copy file name to clipboardExpand all lines: .github/workflows/test-all.yml
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -114,6 +114,15 @@ jobs:
114
114
runs-on: ubuntu-latest
115
115
steps:
116
116
- uses: actions/checkout@v4
117
+
- name: install Chrome stable
118
+
run: |
119
+
npx @puppeteer/browsers install chrome@stable
120
+
chromeVersionString=$(ls chrome)
121
+
if [ "$CHROME_VALIDATED_VERSION" != "$chromeVersionString" ]; then
122
+
echo "::warning ::The Chrome version doesn't match the previously validated version. Consider updating CHROME_VALIDATED_VERSION in the GitHub workflow if tests pass."
123
+
echo "::warning ::Previously validated version: ${CHROME_VALIDATED_VERSION} vs. Installed version: $chromeVersionString"
0 commit comments