From 994587f96683956276c5619a216ae0c2475757b3 Mon Sep 17 00:00:00 2001 From: porink0424 Date: Fri, 31 May 2024 09:22:50 +0900 Subject: [PATCH] Add running type-check in typescript-tests workflow --- .github/workflows/typescript-tests.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/typescript-tests.yml b/.github/workflows/typescript-tests.yml index 90f76645..db8de580 100644 --- a/.github/workflows/typescript-tests.yml +++ b/.github/workflows/typescript-tests.yml @@ -29,7 +29,7 @@ jobs: - run: npm run lint type-check: - name: Type checking on optuna-dashboard + name: Type checking on optuna-dashboard & standalone_app runs-on: ubuntu-latest steps: @@ -44,11 +44,17 @@ jobs: - name: Setup tslib run: make tslib - - name: Type Check + - name: Type Check optuna_dashboard working-directory: optuna_dashboard run: | npm install npm run type-check + + - name: Type Check standalone_app + working-directory: standalone_app + run: | + npm install + npm run type-check check-package-lock-json: name: Check package-lock.json