Skip to content

Commit

Permalink
update .github/workflows/biome-lint.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianjnuwu committed Jan 8, 2025
1 parent 4d001e9 commit fcc12f2
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/biome-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Biome Linter

on:
push:
pull_request:

jobs:
lint:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '20'

- name: Install dependencies
run: |
npm install
- name: Run Biome Linter
run: |
npx @biomejs/biome format --write

0 comments on commit fcc12f2

Please sign in to comment.