Skip to content

Add output sort

Add output sort #150

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Enable Corepack
run: |
corepack enable
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "22.9.0"
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Run linting
run: pnpm test:lint
- name: Run type checking
run: pnpm test:types
- name: Run unit tests
run: pnpm test:unit