From e576079423b5371a93831dc8fd999009b737ce85 Mon Sep 17 00:00:00 2001 From: Joe Hildebrand Date: Tue, 16 Jul 2024 15:35:56 -0600 Subject: [PATCH] Only lint on unix because CR/LF --- .github/workflows/node.js.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 818c732..fa42598 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -28,8 +28,14 @@ jobs: cache: pnpm - name: Install dependencies run: pnpm install + - name: Check coding standards + if: matrix.node-version == '21.x' && matrix.os == 'ubuntu-latest' + run: npm run lint + - name: Static analysis - check types + if: matrix.node-version == '21.x' && matrix.os == 'ubuntu-latest' + run: npm run build - name: Test - run: npm run ci - - uses: codecov/codecov-action@v4 + run: npm run test + - uses: codecov/codecov-action@v3 with: token: ${{ secrets.CODECOV_TOKEN }}