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 cf94199 commit 63c39d8Copy full SHA for 63c39d8
.github/workflows/ci.yaml
@@ -6,7 +6,24 @@ on:
6
- master
7
8
jobs:
9
+ lint:
10
+ runs-on: ubuntu-latest
11
+
12
+ steps:
13
+ - uses: actions/checkout@v4
14
15
+ - name: Use Node.js
16
+ uses: actions/setup-node@v4
17
+ with:
18
+ node-version: 24.4.1
19
20
+ - name: Install dependencies
21
+ run: npm install
22
23
+ - name: Run lint
24
+ run: npm run lint
25
test:
26
+ needs: [lint]
27
runs-on: ubuntu-latest
28
29
steps:
0 commit comments