Skip to content

Commit f17ded7

Browse files
committed
test
1 parent b520819 commit f17ded7

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/sonarqube-typescript.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,12 @@ jobs:
5252

5353
# 🔎 TypeScript Type Checking
5454
- name: TypeScript Check
55-
run: yarn tsc --noEmit --skipLibCheck
55+
run: |
56+
if [ -f "tsconfig.json" ]; then
57+
yarn tsc --noEmit --skipLibCheck
58+
else
59+
echo "⚠️ No tsconfig.json found, skipping TypeScript check."
60+
fi
5661
5762
# 🏗 Run Tests (if enabled)
5863
- name: Run Tests with Coverage

0 commit comments

Comments
 (0)