Skip to content

Commit

Permalink
feat: revert chrome version to 115
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 24, 2023
1 parent 024fade commit 85b6e95
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions .github/workflows/cypress-workflow-vanilla-snapshot-based.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ jobs:
tests:
name: Run Cypress E2E tests
runs-on: ubuntu-latest
container:
image: mattermost/actions-runner:2.308.0-1
env:
# prevents extra Cypress installation progress messages
CI: 1
Expand All @@ -22,6 +20,29 @@ jobs:
# make Node run in ipv4 first so that cypress can detect 5601 port in CI environment
NODE_OPTIONS: '--max-old-space-size=6144 --dns-result-order=ipv4first'
steps:
- name: Set up Chrome
uses: browser-actions/setup-chrome@v1

- name: Install dependencies
run: |
# Install any additional dependencies your tests might need
# For example:
# sudo apt-get install -y some-package
- name: Set up ChromeDriver
uses: browser-actions/setup-chromedriver@v1

- name: Set up Chromium v115
run: |
# Install Chromium v115
wget -q -O - https://storage.googleapis.com/chromium-browser-snapshots/Linux_x64/115.0.582.3/chrome-linux.zip | unzip -q -d /usr/local/bin -
- name: Check versions
run: |
google-chrome --version
chromedriver --version
chromium --version
- name: Set up JDK
uses: actions/setup-java@v1
with:
Expand Down

0 comments on commit 85b6e95

Please sign in to comment.