From 5cfe06a73d7fd3f657e699c03731b5cde2b2c137 Mon Sep 17 00:00:00 2001 From: Sysix Date: Fri, 29 Nov 2024 21:36:37 +0100 Subject: [PATCH] ci: add type check --- .github/workflows/type-check.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/type-check.yml diff --git a/.github/workflows/type-check.yml b/.github/workflows/type-check.yml new file mode 100644 index 0000000..23991c8 --- /dev/null +++ b/.github/workflows/type-check.yml @@ -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