Skip to content

Update binary launcher help and args for OpenAI (#148) #185

Update binary launcher help and args for OpenAI (#148)

Update binary launcher help and args for OpenAI (#148) #185

Workflow file for this run

name: Playwright Tests
on:
push:
branches: [ main, master ]
paths-ignore:
- '**.md'
pull_request:
branches: [ main, master ]
paths-ignore:
- '**.md'
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.58.2-jammy
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run Playwright tests
run: npx playwright test
env:
HOME: /root
- uses: actions/upload-artifact@v4
if: ${{ !cancelled() }}
with:
name: playwright-report
path: playwright-report/
retention-days: 30