Skip to content

refactor: simplify CI workflow by removing matrix strategy and consol… #3

refactor: simplify CI workflow by removing matrix strategy and consol…

refactor: simplify CI workflow by removing matrix strategy and consol… #3

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
quality:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '24'
registry-url: 'https://registry.npmjs.org/'
- uses: pnpm/action-setup@v4
with:
version: 10
- name: Install
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm run lint
- name: Format check
run: pnpm run format:check
- name: TypeScript check
run: pnpm exec tsc --noEmit
- name: Build
run: pnpm run build