Skip to content

build(deps): bump @oclif/plugin-help from 6.0.21 to 6.0.22 #2079

build(deps): bump @oclif/plugin-help from 6.0.21 to 6.0.22

build(deps): bump @oclif/plugin-help from 6.0.21 to 6.0.22 #2079

Workflow file for this run

name: CI Flow
on:
push:
pull_request:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
name: CI ${{ matrix.os }} Node ${{ matrix.node }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
node: [20, 22]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v3
- name: Setup node and restore cached dependencies
uses: actions/setup-node@v4
with:
cache: 'pnpm'
node-version: ${{ matrix.node }}
- name: Install packages
run: pnpm install --frozen-lockfile
- name: Setup kita binary
run: pnpm link .
working-directory: packages/cli
- name: Build
run: pnpm build
- name: Test
run: pnpm test
- name: Publish to Codecov
uses: codecov/codecov-action@v4
with:
# Codecov backend may be unstable
fail_ci_if_error: false
token: ${{ secrets.CODECOV_TOKEN }}