We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4882735 commit 2315764Copy full SHA for 2315764
1 file changed
.github/workflows/lint.yml
@@ -0,0 +1,28 @@
1
+name: Lint
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - main
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ lint:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - name: Checkout
17
+ uses: actions/checkout@v4
18
19
+ - name: Setup Node
20
+ uses: actions/setup-node@v4
21
+ with:
22
+ node-version: "20"
23
24
+ - name: Install
25
+ run: npm ci
26
27
+ - name: Lint
28
+ run: npm run lint
0 commit comments