Skip to content

Commit 35b2edf

Browse files
committed
github/workflows: Add Biome workflow for JavaScript formatting/linting.
Enable Biome on all of webassembly port and tests. Signed-off-by: Damien George <[email protected]>
1 parent badc010 commit 35b2edf

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/biome.yml

+16
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

0 commit comments

Comments
 (0)