Skip to content

Commit

Permalink
feat: update workflow to set chrome v115
Browse files Browse the repository at this point in the history
Signed-off-by: SuZhou-Joe <[email protected]>
  • Loading branch information
SuZhou-Joe committed Nov 27, 2023
1 parent e1cd716 commit d7db380
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/cypress-workflow-vanilla-snapshot-based.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,13 @@ jobs:
- name: Set up Chromium v115
run: |
wget -q -O chromium.zip https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/115.0.5790.170/linux64/chrome-linux64.zip
sudo mkdir -p /opt/chromium
sudo unzip -q chromium.zip -d /opt/chromium
mkdir -p /opt/chromium
rm -rf /usr/local/share/chromium
unzip -qq chromium.zip -d /opt/chromium
sudo rm -rf /usr/bin/chromium
sudo ln -s /opt/chromium/chrome-linux/chrome /usr/bin/chromium
sudo rm -rf /usr/bin/chromium-browser
ln -s /opt/chromium/chrome-linux/chrome /usr/bin/chromium
ln -s /opt/chromium/chrome-linux/chrome /usr/bin/chromium-browser
rm chromium.zip
- name: Check versions
Expand Down

0 comments on commit d7db380

Please sign in to comment.