Skip to content

Migrate to oxfmt

Migrate to oxfmt #51

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 20.x
uses: actions/setup-node@v6
with:
node-version: 20
- uses: pnpm/action-setup@v4
- name: Install deps
run: |
pnpm install
pnpm --dir docs exec playwright install --with-deps
- name: Oxfmt
run: |
pnpm format:check
- name: Test
run: pnpm test