diff --git a/.github/workflows/testdriver.yml b/.github/workflows/testdriver.yml index 0f3ea84..812f66c 100644 --- a/.github/workflows/testdriver.yml +++ b/.github/workflows/testdriver.yml @@ -12,11 +12,17 @@ jobs: runs-on: ubuntu-latest steps: - uses: testdriverai/action@main - version: v4.0.0 - key: ${{secrets.TESTDRIVER_API_KEY}} with: + key: ${{secrets.TESTDRIVER_API_KEY}} prompt: | 1. /run /Users/ec2-user/actions-runner/_work/testdriver/testdriver/testdriver/test.yml + prerun: | + cd $env:TEMP + npm init -y + npm install dashcam-chrome + Start-Process "C:/Program Files/Google/Chrome/Application/chrome.exe" -ArgumentList "--start-maximized", "--load-extension=$(pwd)/node_modules/dashcam-chrome/build", "${{ env.WEBSITE_URL }}" + exit env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} FORCE_COLOR: "3" + WEBSITE_URL: "https://example.com" # Define the website URL here