Refactor Plugin + add missed typing #101
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@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'pnpm' | |
- name: 📦 Install Project Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: 🏃♂️ Run TypeScript | |
run : pnpm run type-check |