remove pattern path data caching, was experiencing some weird issues … #324
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: TypeScript Linting | |
on: | |
push: | |
paths-ignore: | |
- ".github/**" | |
- "fastlane/**" | |
branches: | |
- main | |
pull_request: | |
jobs: | |
tsc: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
- name: Install dependencies | |
run: npm install | |
- name: Run TypeScript checks | |
run: npx tsc | |