Skip to content

Commit

Permalink
WEBUI-1260: need to downgrade chrome browser version
Browse files Browse the repository at this point in the history
  • Loading branch information
rahuljain-dev committed Sep 11, 2023
1 parent 04d888a commit 1822691
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/a11y.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,14 @@ jobs:
distribution: 'zulu'
java-version: '11'

- name: Install google chrome
shell: bash
run: |
wget -q https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_114.0.5735.90-1_amd64.deb
apt install -y --allow-downgrades ./google-chrome-stable_114.0.5735.90-1_amd64.deb
ln -s /usr/bin/google-chrome /usr/bin/chrome -f
chrome --version
- name: 'Update settings.xml with server configuration'
run: |
echo '<settings>
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/ftest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,14 @@ jobs:
distribution: 'zulu'
java-version: '11'

- name: Install google chrome
shell: bash
run: |
wget -q https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_114.0.5735.90-1_amd64.deb
apt install -y --allow-downgrades ./google-chrome-stable_114.0.5735.90-1_amd64.deb
ln -s /usr/bin/google-chrome /usr/bin/chrome -f
chrome --version
- name: Determine nuxeo-elements branch to link
id: pick_nuxeo_elements_branch
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ jobs:
branch: maintenance-3.0.x

a11y:
uses: nuxeo/nuxeo-web-ui/.github/workflows/a11y.yaml@maintenance-3.1.x
uses: nuxeo/nuxeo-web-ui/.github/workflows/a11y.yaml@maintenance-3.0.x
secrets:
NPM_PACKAGES_TOKEN: ${{ secrets.NPM_PACKAGES_TOKEN }}
PACKAGES_AUTH_USER: ${{ secrets.PACKAGES_AUTH_USER }}
PACKAGES_AUTH_TOKEN: ${{ secrets.PACKAGES_AUTH_TOKEN }}
with:
branch: maintenance-3.1.x
branch: maintenance-3.0.x

ftest:
uses: nuxeo/nuxeo-web-ui/.github/workflows/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions packages/nuxeo-web-ui-ftest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@cucumber/tag-expressions": "^2.0.4",
"@wdio/cli": "7.20.5",
"@wdio/cucumber-framework": "^7.20.3",
"@wdio/local-runner": "^7.2.0",
"@wdio/local-runner": "7.32.4",
"@wdio/selenium-standalone-service": "7.2.0",
"@wdio/spec-reporter": "^7.2.0",
"@wdio/sync": "^7.2.0",
Expand All @@ -40,7 +40,7 @@
"multiple-cucumber-html-reporter": "^1.18.0",
"node-fetch": "^2.6.1",
"nuxeo": "^4.0.3",
"wdio-chromedriver-service": "^7.0.0",
"wdio-chromedriver-service": "7.3.2",
"wdio-cucumberjs-json-reporter": "^2.0.3",
"webdriverio": "^7.2.0"
}
Expand Down

0 comments on commit 1822691

Please sign in to comment.