Skip to content

Commit

Permalink
test: error output
Browse files Browse the repository at this point in the history
  • Loading branch information
johnhaup committed May 19, 2024
1 parent 4816ed6 commit de70d37
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/tsc-output.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,14 @@ jobs:
uses: ./.github/actions/setup

- name: Run TypeScript Compiler
run: npx tsc --noEmit --pretty false --p tsconfig.json > tsc_output.txt
run: |
echo "Running tsc"
npx tsc --noEmit --pretty false --p tsconfig.json > tsc_output.txt 2> tsc_errors.log || true
echo "TSC Output:"
cat tsc_output.txt
echo "TSC Errors:"
cat tsc_errors.log
- name: Extract branch name
run: |
Expand Down

0 comments on commit de70d37

Please sign in to comment.