Skip to content
This repository was archived by the owner on Apr 28, 2026. It is now read-only.

fix(core,cli): rename telemetry-client import to asiaostrich-telemetr… #58

fix(core,cli): rename telemetry-client import to asiaostrich-telemetr…

fix(core,cli): rename telemetry-client import to asiaostrich-telemetr… #58

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_call:
jobs:
lint-and-typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm lint
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm build
- run: pnpm test
python:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
working-directory: python
run: |
python -m pip install --upgrade pip
pip install -e ".[dev]"
- name: Ruff lint
working-directory: python
run: ruff check .
- name: Mypy type check
working-directory: python
run: mypy .
- name: Pytest
working-directory: python
run: pytest -v