Git checkout during build suddenly no longer working

Apologies, duplicate of Cannot checkout anymore

As noted here by @JamJacques the solution seems to be to move the checkout to the first step in the build:

# ...
jobs:
  build:
    # ...

    steps:
    - checkout
    - browser-tools/install-chrome
    - browser-tools/install-chromedriver
1 Like