8000 github/workflows: Add Biome workflow for JavaScript formatting/linting. · micropython/micropython@0f0cb62 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0f0cb62

Browse files
committed
github/workflows: Add Biome workflow for JavaScript formatting/linting.
Signed-off-by: Damien George <damien@micropython.org>
1 parent 5d60755 commit 0f0cb62

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/biome.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: JavaScript code lint and formatting with Biome
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
eslint:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Checkout
10+
uses: actions/checkout@v4
11+
- name: Setup Biome
12+
uses: biomejs/setup-biome@v2
13+
with:
14+
version: 1.5.3
15+
- name: Run Biome
16+
run: biome ci --indent-style=space --indent-width=4 tests/ ports/webassembly/pyscript/

0 commit comments

Comments
 (0)
0