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 ef60977 commit d0ca99dCopy full SHA for d0ca99d
.github/workflows/validate.yml
@@ -35,7 +35,7 @@ jobs:
35
cache: npm
36
- name: Install dependencies
37
run: npm ci
38
- - name: Validate
+ - name: Lint
39
run: npm run lint
40
41
format:
@@ -52,5 +52,23 @@ jobs:
52
53
54
55
+ - name: Check format
56
run: npm run check-format
57
+
58
+ check-types:
59
+ runs-on: ubuntu-latest
60
+ steps:
61
+ - name: Checkout
62
+ uses: actions/checkout@v4
63
+ with:
64
+ persist-credentials: false
65
+ - name: Install Node.js
66
+ uses: actions/setup-node@v4
67
68
+ node-version: 22
69
+ cache: npm
70
+ - name: Install dependencies
71
+ run: npm ci
72
+ - name: Check types
73
+ continue-on-error: true
74
+ run: npm run check-types
0 commit comments