Skip to content

Bump oxlint from 1.60.0 to 1.62.0 #286

Bump oxlint from 1.60.0 to 1.62.0

Bump oxlint from 1.60.0 to 1.62.0 #286

Workflow file for this run

name: Continuous Integration
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Check types
run: npm run typecheck
- name: Check code format
run: npm run prettier
- name: Lint
run: npm run lint
- name: Build
run: npm run build