diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 282a373d7..42143ae70 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 ok + - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # 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() }}