Skip to content

chore: replace eslint with oxlint (#4) #13

chore: replace eslint with oxlint (#4)

chore: replace eslint with oxlint (#4) #13

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Install
run: pnpm install --no-frozen-lockfile
- name: Check formatting
run: pnpm format:check
- name: Lint
run: pnpm lint
- name: Check examples install and build
run: pnpm run check-examples