Skip to content

fix(home): Nodes→Pockets action pill + remove active-Pocket chip #2

fix(home): Nodes→Pockets action pill + remove active-Pocket chip

fix(home): Nodes→Pockets action pill + remove active-Pocket chip #2

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
verify:
name: Typecheck, lint and test
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Typecheck
run: bun run typecheck
- name: Lint
run: bun run lint
- name: Test
run: bun test src