We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7312568 commit 2303e1aCopy full SHA for 2303e1a
.github/workflows/jshint.yml
@@ -0,0 +1,24 @@
1
+name: JSHint
2
+
3
+on:
4
+ pull_request:
5
+ branches: [ "main" ]
6
7
+jobs:
8
+ lint:
9
+ runs-on: ubuntu-latest
10
11
+ steps:
12
+ - name: Checkout repository
13
+ uses: actions/checkout@v3
14
15
+ - name: Setup Node
16
+ uses: actions/setup-node@v3
17
+ with:
18
+ node-version: 18
19
20
+ - name: Install dependencies
21
+ run: npm install
22
23
+ - name: Run JSHint
24
+ run: npx jshint .
0 commit comments