Skip to content

Commit

Permalink
ci: add tsc to CI pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
farmerpaul committed Oct 31, 2024
1 parent 34b9471 commit d55ddc7
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,26 @@ jobs:
prettier: true
prettier_extensions: js,jsx,ts,tsx
continue_on_error: false
tsc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}

- name: Install deps
run: yarn install --frozen-lockfile

- uses: actions/cache@v4
with:
path: |
~/node_modules
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }}

- name: Running tsc
run: yarn tsc
tests:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit d55ddc7

Please sign in to comment.