We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5daa07 commit da74883Copy full SHA for da74883
.github/workflows/ci.yml
@@ -12,6 +12,23 @@ permissions:
12
contents: read
13
14
jobs:
15
+ lint:
16
+ name: Lint
17
+ runs-on: ubuntu-latest
18
+ steps:
19
+ - uses: actions/checkout@v4
20
+
21
+ - name: Install Node.js
22
+ uses: actions/setup-node@v4
23
+ with:
24
+ node-version: 'lts/*'
25
26
+ - name: Install Node.js dependencies
27
+ run: npm install --ignore-scripts --include=dev
28
29
+ - name: Lint code
30
+ run: npm run lint
31
32
test:
33
name: Test - Node.js ${{ matrix.node-version }}
34
runs-on: ubuntu-latest
@@ -34,9 +51,6 @@ jobs:
51
- name: Run tests
35
52
run: npm run test-ci
36
53
37
- - name: Lint code
38
- run: npm run lint
39
-
40
54
- name: Upload code coverage
41
55
uses: actions/upload-artifact@v4
42
56
with:
0 commit comments