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 34c3e47 commit b36c8b2Copy full SHA for b36c8b2
.github/workflows/build.yml
@@ -20,3 +20,37 @@ jobs:
20
- run: npm ci
21
- run: npm run build
22
- run: npm run lint
23
+
24
+ lint:
25
+ timeout-minutes: 5
26
+ runs-on: ubuntu-latest
27
+ steps:
28
+ - uses: actions/checkout@v4
29
30
+ - name: Use Node.js 20.x
31
+ uses: actions/setup-node@v4
32
+ with:
33
+ node-version: 20.x
34
35
+ - name: Npm Install
36
+ run: npm install
37
38
+ - name: Lint
39
+ run: npm run lint
40
41
+ format:
42
43
44
45
46
47
48
49
50
51
52
53
54
55
+ - name: Check Format
56
+ run: npm run format:check
0 commit comments