Skip to content

Conversation

@lucasgoral
Copy link
Contributor

What this PR does / why we need it:

Which issue(s) this PR fixes:
Fixes #

Special notes for your reviewer:

Copilot AI review requested due to automatic review settings October 22, 2025 10:46
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR adds TypeScript compilation checking to the CI pipeline to ensure type safety before other test steps run.

Key Changes

  • Added a TypeScript type check step using tsc --noEmit to the build workflow

Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.

run: npm run lint

- name: TypeScript Type Check
run: npx tsc --noEmit
Copy link

Copilot AI Oct 22, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using npx tsc may not respect the project's specific TypeScript version defined in package.json. Consider using npm run with a package.json script (e.g., npm run type-check) to ensure consistency with the local TypeScript version.

Suggested change
run: npx tsc --noEmit
run: npm run type-check

Copilot uses AI. Check for mistakes.
@lucasgoral lucasgoral closed this Oct 23, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants