Skip to content

Migrate to oxlint and oxfmt #94

Migrate to oxlint and oxfmt

Migrate to oxlint and oxfmt #94

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Format check
run: npm run format:check
- name: Install Playwright browsers
run: npx playwright install chromium --with-deps
- name: Build
run: npm run build
- name: Test
run: npm test