Skip to content

Migrate to oxfmt

Migrate to oxfmt #49

Workflow file for this run

name: CI
on:
push:
branches: [main]
paths-ignore:
- "*.md"
pull_request:
branches: [main]
paths-ignore:
- "*.md"
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
e2e-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set node version to 24.x
uses: actions/setup-node@v6
with:
node-version: 24
- uses: pnpm/action-setup@v4
- name: Install deps
run: |
pnpm install
pnpm --dir docs exec playwright install chromium
- name: Oxfmt
run: |
pnpm format:check
- name: Test
run: pnpm test