diff --git a/.github/workflows/a11y.yaml b/.github/workflows/a11y.yaml index 1cc6e77155..42b9963be9 100644 --- a/.github/workflows/a11y.yaml +++ b/.github/workflows/a11y.yaml @@ -48,6 +48,11 @@ jobs: distribution: 'zulu' java-version: '11' + - name: Install google chrome + run: | + wget 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 + - name: 'Update settings.xml with server configuration' run: | echo ' @@ -63,9 +68,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