We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58fc5aa commit 8f5b73dCopy full SHA for 8f5b73d
.github/workflows/nodejs.yml
@@ -1,4 +1,4 @@
1
-name: Test JS
+name: Run JS tests
2
3
on:
4
- push
@@ -22,7 +22,19 @@ jobs:
22
- run: deno install
23
- run: deno run build
24
- run: deno --allow-env --allow-write --allow-read index.test.js
25
- nodejs:
+ lint:
26
+ name: Lint
27
+ runs-on: ubuntu-latest
28
+ steps:
29
+ - uses: actions/checkout@1e31de5234b9f8995739874a8ce0492dc87873e2 # v4
30
+ - uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4
31
+ with:
32
+ registry-url: 'https://registry.npmjs.org'
33
+ cache: npm
34
+ - run: npm install
35
+ - run: npm run build --if-present
36
+ - run: npm run lint --if-present
37
+ node:
38
name: Node v${{ matrix.version }} @ ${{ matrix.os }}
39
runs-on: ${{ matrix.os }}
40
strategy:
0 commit comments