Skip to content

feat(skill): add error logging and formatting for failed bash commands in skill content #1612

feat(skill): add error logging and formatting for failed bash commands in skill content

feat(skill): add error logging and formatting for failed bash commands in skill content #1612

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main, develop ]
workflow_dispatch:
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22]
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v5
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm build
- name: CI
run: pnpm run ci