We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39a5ea1 commit 19ef4a9Copy full SHA for 19ef4a9
1 file changed
.github/workflows/website.yml
@@ -228,6 +228,24 @@ jobs:
228
name: wasm-${{ matrix.name }}
229
path: wasm-out
230
231
+ lint-js:
232
+ name: Lint playground JavaScript
233
+ runs-on: ubuntu-latest
234
+ steps:
235
+ - name: Checkout uutils.github.io Repository
236
+ uses: actions/checkout@v7
237
+
238
+ - name: Set up Node.js
239
+ uses: actions/setup-node@v4
240
+ with:
241
+ node-version: 20
242
243
+ - name: Install dependencies
244
+ run: npm install
245
246
+ - name: Run ESLint
247
+ run: npm run lint
248
249
build:
250
name: Build website artifacts
251
runs-on: ubuntu-latest
0 commit comments