Refactor Plugin + add missed typing #104
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate PR + Commits | |
on: | |
push: | |
branches: [main, master] | |
pull_request: | |
branches: [main, master] | |
jobs: | |
compile: | |
name: Type Check (tsc) | |
runs-on: ubuntu-latest | |
steps: | |
- name : 📦 Checkout project repo | |
uses: actions/checkout@v4 | |
- name : 📦 Setup Node + PNPM + install deps | |
uses: ./.github/actions/setup-node-pnpm-install | |
- name: 🏃♂️ Run TypeScript | |
run : pnpm run type-check |