Skip to content

Commit 63c39d8

Browse files
committed
ci(linter): Put lint job
1 parent cf94199 commit 63c39d8

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,24 @@ on:
66
- master
77

88
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
925
test:
26+
needs: [lint]
1027
runs-on: ubuntu-latest
1128

1229
steps:

0 commit comments

Comments
 (0)