Adds typescript check to github actions

This commit is contained in:
Aryan Goharzad
2023-01-30 15:33:49 -05:00
parent d563beb239
commit 71fc6220a6
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -19,8 +19,10 @@ jobs:
with:
eslint: true
prettier: true
- name: Typescript & Lint check
- name: Lint check
run: yarn lint
- name: Typecheck
uses: andoshin11/typescript-error-reporter-action@v1.0.2
testing:
name: Run tests
runs-on: ubuntu-latest
+1 -1
View File
@@ -100,6 +100,6 @@
"skipLibCheck": true /* Skip type checking all .d.ts files. */
},
"exclude": [
"node_modules", "babel.config.js", "metro.config.js", "jest.config.js"
"node_modules", "babel.config.js", "metro.config.js", "jest.config.js", "__mocks__"
]
}