diff --git a/.github/workflows/pull_request_review.yml b/.github/workflows/pull_request_review.yml index 3aaea7f080..d644a96978 100644 --- a/.github/workflows/pull_request_review.yml +++ b/.github/workflows/pull_request_review.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: - os: [ubuntu-latest] + os: [ubuntu-latest, windows-latest] node: [18.x, 20.x] runs-on: ${{ matrix.os }} @@ -24,7 +24,8 @@ jobs: - name: Checkout code uses: actions/checkout@v2 - - name: Normalize line endings + - name: Normalize line endings (Windows only) + if: runner.os == 'Windows' run: | git config --global core.autocrlf false git config --global core.eol lf