fix: package.json to reduce vulnerabilities #330
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 Compilation Errors | |
on: | |
push: | |
pull_request: | |
jobs: | |
tsc: | |
name: tsc | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: c-hive/gha-yarn-cache@v2 | |
- name: Install JS dependencies | |
run: yarn install | |
- name: Check Typescript Errors | |
run: yarn tsc --noEmit |