We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent badc010 commit 35b2edfCopy full SHA for 35b2edf
1 file changed
.github/workflows/biome.yml
@@ -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