Skip to content

refactor(rules/style): use Program:exit to improve rule logic #10

refactor(rules/style): use Program:exit to improve rule logic

refactor(rules/style): use Program:exit to improve rule logic #10

Workflow file for this run

name: CI
concurrency:
group: "${{ github.workflow }} - ${{ github.head_ref || github.ref }}"
cancel-in-progress: true
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Test (Node ${{ matrix.node }})
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node: [18, 20, 22]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PNPM
uses: ./.github/actions/setup-pnpm
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Run test
run: pnpm run test