Skip to content

feat: add accept all button and improve batch ux #24

feat: add accept all button and improve batch ux

feat: add accept all button and improve batch ux #24

Workflow file for this run

name: CI
on:
push:
branches:
- main
- "renovate/**"
pull_request:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: "package.json"
- uses: pnpm/action-setup@v4
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint and Format Check
run: pnpm ci:lint
- name: Typecheck
run: pnpm typecheck
- name: Run tests
run: pnpm test