We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent add4192 commit b052e56Copy full SHA for b052e56
.github/workflows/ci.yml
@@ -16,21 +16,17 @@ jobs:
16
- name: Setup Node.js
17
uses: actions/setup-node@v4
18
with:
19
- node-version: '20.x'
+ node-version: '20'
20
cache: 'npm'
21
22
- name: Install dependencies
23
run: npm ci
24
-
25
- - name: Lint
26
- run: npm run lint
27
+
28
- name: Type check
29
run: npm run type-check
30
31
# - name: Run tests
32
# run: npm run test
33
34
- - name: Build
35
36
- run: npm run build
+ - name: Build
+ run: npm run build
0 commit comments