From fd71b661c1b5dd227dd064968f44e5f4832b90fa Mon Sep 17 00:00:00 2001 From: Oscar Dominguez Date: Tue, 24 Sep 2024 23:50:33 +0200 Subject: [PATCH] ci(test): run lint and tsc in CI (#411) --- .github/workflows/test.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 92a0f3c..301d010 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,5 +31,12 @@ jobs: steps: - run: exit 1 if: ${{ needs.test_matrix.result != 'success' }} - - run: echo "Tests execution finished successfully! ✅" + - 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() }}