Skip to content

here goes nothin

here goes nothin #5

Workflow file for this run

name: TestDriver.ai
on:
push:
branches: ["main"]
pull_request:
workflow_dispatch:
jobs:
gather-markdown-files:
name: Gather Markdown Files
runs-on: ubuntu-latest
outputs:
markdown_files: ${{ steps.markdown_list.outputs.files }}
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Find all markdown files
id: markdown_list
run: |
FILES=$(ls ./testdriver/.generate/*.md)
FILES_JSON=$(echo "$FILES" | jq -R -s -c 'split("\n")[:-1]')
echo "::set-output name=files::$FILES_JSON"
test:
needs: gather-markdown-files
runs-on: ubuntu-latest
strategy:
matrix:
markdown: ${{ fromJson(needs.gather-markdown-files.outputs.markdown_files) }}
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Extract file name
id: extract_filename
run: |
FILE_NAME=$(basename "${{ matrix.markdown }}" .md)
echo "FILE_NAME=$FILE_NAME" >> $GITHUB_ENV
# Set the name of the job using the extracted file name
display-name: TestDriver - ${{ env.FILE_NAME }}

Check failure on line 42 in .github/workflows/testdriver.yml

View workflow run for this annotation

GitHub Actions / TestDriver.ai

Invalid workflow file

The workflow is not valid. .github/workflows/testdriver.yml (Line: 42, Col: 9): Unexpected value 'display-name'
- uses: testdriverai/action@main
with:
key: ${{ secrets.TESTDRIVER_API_KEY }}
prompt: |
$(cat ${{ matrix.markdown }})
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://pubnub.com"