Skip to content

Use bare label as Claude session name instead of timestamped ID #13

Use bare label as Claude session name instead of timestamped ID

Use bare label as Claude session name instead of timestamped ID #13

Workflow file for this run

name: CI
on:
push:
branches: [main, trunk]
pull_request:
branches: [main]
jobs:
build-lint-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npx tsc --build
- run: npx eslint .
- name: Unit tests
run: npm test
- name: E2E tests (sessions)
run: npx tsx --test 'packages/cli/test/e2e/sessions.e2e.ts'