Skip to content

feat: bump oxfmt to v0.24.0 #34

feat: bump oxfmt to v0.24.0

feat: bump oxfmt to v0.24.0 #34

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v6
with:
node-version: lts/*
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run lint
- run: pnpm run typecheck
test:
runs-on: ${{ matrix.os }}
needs: [check]
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node: [20.x, 22.x, 24.x]
fail-fast: false
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run build
- run: pnpm run test