Skip to content

Update Stagehand Sample App to be compatible with Stagehand v3 #58

Update Stagehand Sample App to be compatible with Stagehand v3

Update Stagehand Sample App to be compatible with Stagehand v3 #58

Workflow file for this run

name: ESLint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
eslint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Run ESLint
run: bun run lint
- name: Annotate ESLint results
uses: ataylorme/eslint-annotate-action@v2
if: failure()
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
report-json: "eslint-report.json"