From 6c7321c394bb9b3988e8860e4a7570cfcf4cf2ad Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Mon, 27 Mar 2023 02:23:00 +0900 Subject: [PATCH] Import missing typecheck workflow https://github.com/kachick/wait-other-jobs/blob/b45b76becf85a8fad6484efa48dad06678ef0816/.github/workflows/ci.yml#L36-L48 --- .github/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 07adfc2..0a65cf3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,6 +48,20 @@ jobs: - name: Prevent missing commits after compile run: git add --intent-to-add . && git diff --exit-code + typecheck: + timeout-minutes: 15 + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 16 + cache: npm + - name: install dependencies + run: npm ci --ignore-scripts + - name: Typecheck + run: npm run typecheck + lint: runs-on: ubuntu-latest steps: