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() }}