Skip to content

feat: recognize ::pathrule:package pattern imports #8

feat: recognize ::pathrule:package pattern imports

feat: recognize ::pathrule:package pattern imports #8

Workflow file for this run

# Pathrule Core — OSS CI (M52 5.5).
# Runs on the public mirror: typecheck + the KnowledgeBackend contract suite
# (in-memory + SQLite parity) + the local CLI module tests, on Linux and macOS.
name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
node: [20, 22]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: pnpm
- run: pnpm install --frozen-lockfile=false
- run: pnpm typecheck
- run: pnpm test
dco:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- name: DCO sign-off check
uses: tim-actions/dco@v1.1.0