Skip to content

Improve error handling in crawler and add comprehensive test suite #35

Improve error handling in crawler and add comprehensive test suite

Improve error handling in crawler and add comprehensive test suite #35

Workflow file for this run

name: CI
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 24
cache: yarn
- run: yarn install --immutable
- run: yarn build
- uses: actions/upload-artifact@v4
with:
name: build-output
path: packages/**/lib/
retention-days: 1
test:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 24
cache: yarn
- run: yarn install --immutable
- uses: actions/download-artifact@v4
with:
name: build-output
path: packages/
- run: yarn test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 24
cache: yarn
- run: yarn install --immutable
- run: yarn lint:check