From c9269b065a62d32247a9bed7a08262651b976e97 Mon Sep 17 00:00:00 2001 From: Oscar Dominguez Date: Wed, 25 Sep 2024 00:13:06 +0200 Subject: [PATCH] ci run build (#722) * ci(test): use node cache for 'test' job * ci(test): run tsc via npm run build in CI --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9e26d5a1c..df5ed8903 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -39,6 +39,11 @@ jobs: - run: exit 1 if: ${{ needs.test_matrix.result != 'success' }} - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: "lts/*" + cache: npm - run: npm ci - run: npm run lint + - run: npm run build if: ${{ always() }}