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 c435272 commit 0576f56Copy full SHA for 0576f56
.github/workflows/ci.yml
@@ -34,6 +34,20 @@ jobs:
34
- run: npm ci
35
- name: Check Docs
36
run: npm run docs
37
+ check-lint:
38
+ name: Lint
39
+ timeout-minutes: 15
40
+ runs-on: ubuntu-latest
41
+ steps:
42
+ - uses: actions/checkout@v4
43
+ - name: Use Node.js
44
+ uses: actions/setup-node@v4
45
+ with:
46
+ cache: npm
47
+ - name: Install dependencies
48
+ run: npm ci
49
+ - name: Lint
50
+ run: npm run lint
51
build:
52
runs-on: ubuntu-latest
53
timeout-minutes: 30
@@ -55,7 +69,6 @@ jobs:
55
69
node-version: ${{ matrix.NODE_VERSION }}
56
70
cache: npm
57
71
58
- - run: npm run lint
59
72
- run: npm test -- --maxWorkers=4
60
73
- run: npm run test:mongodb
61
74
env:
0 commit comments