diff --git a/.github/workflows/cypress/action.yml b/.github/workflows/cypress/action.yml index e0aedfa3a7..7cc2e5aac9 100644 --- a/.github/workflows/cypress/action.yml +++ b/.github/workflows/cypress/action.yml @@ -26,13 +26,13 @@ inputs: runs: using: 'composite' steps: - - uses: browser-actions/setup-chrome@v1 - - uses: ./.github/workflows/yarn - - name: Install Cypress + - name: Install Latest stable Chrome Version shell: bash - run: ./node_modules/.bin/cypress install + run: | + curl -O 'https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb' + sudo apt-get install ./google-chrome-stable_current_amd64.deb - uses: ./.github/workflows/build with: