From 86147ec04d62afe7c7be7f9c8fefe3daf0939854 Mon Sep 17 00:00:00 2001 From: per1234 Date: Sat, 8 May 2021 13:34:20 -0700 Subject: [PATCH] Validate tsconfig.eslint.json At the time the "Check TypeScript Configuration" workflow was created, the eslint proposal was still pending, so only tsconfig.json was validated in the initial implementation of the workflow. Now that the project contains two tsconfig files and the infrastructure is in place to easily validate any number of these files, it might as well be used to the fullest extent. --- .github/workflows/check-tsconfig.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/check-tsconfig.yml b/.github/workflows/check-tsconfig.yml index 6d71cd9f..3e13d172 100644 --- a/.github/workflows/check-tsconfig.yml +++ b/.github/workflows/check-tsconfig.yml @@ -26,6 +26,7 @@ jobs: matrix: file: - ./tsconfig.json + - ./tsconfig.eslint.json steps: - name: Checkout repository