You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/nodejs.yml
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -41,6 +41,12 @@ jobs:
41
41
- name: Lint
42
42
run: npm run lint
43
43
44
+
- name: Build types
45
+
run: npm run build:types
46
+
47
+
- name: Check types
48
+
run: if [ -n "$(git status types --porcelain)" ]; then echo "Missing types. Update types by running 'npm run build:types'"; exit 1; else echo "All types are valid"; fi
0 commit comments