Skip to content

Commit

Permalink
Only lint on unix because CR/LF
Browse files Browse the repository at this point in the history
  • Loading branch information
hildjj committed Jul 16, 2024
1 parent 46b9b0a commit e576079
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

0 comments on commit e576079

Please sign in to comment.