Skip to content

Add Firecrawl direct fetch support #8

Add Firecrawl direct fetch support

Add Firecrawl direct fetch support #8

Workflow file for this run

name: CI
on:
push:
pull_request:
permissions:
contents: read
jobs:
validate:
name: Full validation
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.13
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Test
run: bun test
env:
EXA_API_KEY: ${{ secrets.EXA_API_KEY }}
CONTEXT7_API_KEY: ${{ secrets.CONTEXT7_API_KEY }}
- name: Typecheck
run: bun run typecheck
- name: Lint and format check
run: bun run check
- name: Check package contents
run: bun pm pack --dry-run
- name: Smoke test Pi package load
run: PI_OFFLINE=1 bunx pi --no-extensions -e . --list-models >/tmp/pi-web-minimal-pi-load.out