Skip to content

feat!: migrate CLI to scrapegraph-js v2 API #58

feat!: migrate CLI to scrapegraph-js v2 API

feat!: migrate CLI to scrapegraph-js v2 API #58

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install
# scrapegraph-js is pinned to a GitHub commit (not yet on npm) and ships
# without a prebuilt dist/ — build it in-place so module resolution works.
- run: cd node_modules/scrapegraph-js && bun install && bun run build
- run: bun test
lint:
name: Lint & Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install
- run: cd node_modules/scrapegraph-js && bun install && bun run build
- run: bun run check