From a3f7cb00ff71457a55bec011f1d6087d4e4074fb Mon Sep 17 00:00:00 2001 From: poonam yadav Date: Mon, 11 Sep 2023 17:37:47 +0530 Subject: [PATCH] add google chrome browser command --- .github/workflows/a11y.yaml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/a11y.yaml b/.github/workflows/a11y.yaml index 1cc6e77155..b0c2739ea5 100644 --- a/.github/workflows/a11y.yaml +++ b/.github/workflows/a11y.yaml @@ -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 ' @@ -63,9 +71,5 @@ jobs: - name: Web UI build run: mvn -B -ntp install - #================================================================================================================== - # this line of code has been commented on due to some driver issues, we will resume it once WEBUI-1266 is resolved. - #================================================================================================================== - # - name: A11y checks - # run: mvn -B -ntp -f plugin/a11y install - #================================================================================================================== + - name: A11y checks + run: mvn -B -ntp -f plugin/a11y install