Skip to content

(feat) add Octokit integration for github access #15

(feat) add Octokit integration for github access

(feat) add Octokit integration for github access #15

Workflow file for this run

name: CLI
permissions: {}
on:
push:
paths:
- "cli/**"
- ".github/workflows/test-cli.yml"
pull_request:
paths:
- "cli/**"
- ".github/workflows/test-cli.yml"
workflow_dispatch:
defaults:
run:
working-directory: cli
jobs:
test:
name: Vitest
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: 24
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run tests
run: pnpm test