From 22ffd42a665b099a07ef97f17a2279fc1981d684 Mon Sep 17 00:00:00 2001 From: matildepark Date: Fri, 14 May 2021 00:33:40 -0400 Subject: [PATCH] build: check subdirs on tsc Forgot this yet again. --- .github/workflows/typescript-check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/typescript-check.yml b/.github/workflows/typescript-check.yml index 71b13bbea..6ad913bba 100644 --- a/.github/workflows/typescript-check.yml +++ b/.github/workflows/typescript-check.yml @@ -3,7 +3,7 @@ name: typescript-check on: pull_request: paths: - - 'pkg/interface' + - 'pkg/interface/**' jobs: typescript-check: @@ -11,4 +11,4 @@ jobs: name: "Check pkg/interface types" steps: - uses: actions/checkout@v2 - - run: cd 'pkg/interface' && npm i && npm run tsc \ No newline at end of file + - run: cd 'pkg/interface' && npm i && npm run tsc