Skip to content

Commit

Permalink
ci: add type check
Browse files Browse the repository at this point in the history
  • Loading branch information
Sysix committed Nov 29, 2024
1 parent f9c1e8f commit 5cfe06a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/type-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Type Check

on:
pull_request:
types: [opened, synchronize]
push:
branches:
- main
- 'renovate/**'

jobs:
type-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: ./.github/actions/pnpm

- name: Run eslint
run: npx tsc --noEmit

0 comments on commit 5cfe06a

Please sign in to comment.