Skip to content

Replace ESLint with Biome #114

Replace ESLint with Biome

Replace ESLint with Biome #114

Workflow file for this run

name: test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Checkout code
- name: Install node
uses: actions/setup-node@v3
with:
node-version: 20.x
- run: npm i -D prettier
name: Install prettier
- run: npm run check-formatting
name: Check formatting
- run: npm test
name: Run tests
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Checkout code
- name: Setup Biome
uses: biomejs/setup-biome@v2
with:
version: latest
- name: Run Biome
run: biome ci .