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 675a92f commit 99b3405Copy full SHA for 99b3405
.github/workflows/check-files.yaml
@@ -42,6 +42,13 @@ jobs:
42
echo "::notice title=Mixed TR and informative docs changes::Please submit changes to TR space separately from changes to informative docs."
43
echo "CHECK_FAILED=1" >> "$GITHUB_ENV"
44
fi
45
+ - name: Check TypeScript
46
+ run: |
47
+ npm ci
48
+ if test $(npx tsc | wc -l) -gt 0; then
49
+ echo '::notice title=Branch contains TypeScript errors::Run `npm run check` locally for details.'
50
+ echo "CHECK_FAILED=1" >> "$GITHUB_ENV"
51
+ fi
52
- name: Reflect status
53
run: |
54
test ! $CHECK_FAILED
0 commit comments