diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 8bad97754..238bef4e7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -171,6 +171,10 @@ jobs: gem install asciidoctor git config --global user.name "Example Name" git config --global user.email "example@example.com" + - uses: browser-actions/setup-chrome@v1 + id: setup-chrome + - run: | + ${{ steps.setup-chrome.outputs.chrome-path }} --version - name: "Set $TERM=xterm" run: printf "TERM=xterm\\n" >> $GITHUB_ENV - name: "Run bats tests" @@ -258,6 +262,10 @@ jobs: sudo gem install asciidoctor git config --global user.name "Example Name" git config --global user.email "example@example.com" + - uses: browser-actions/setup-chrome@v1 + id: setup-chrome + - run: | + ${{ steps.setup-chrome.outputs.chrome-path }} --version - name: "Install bats-core" run: | git clone https://github.com/bats-core/bats-core.git "${HOME}/bats-core" &&