Skip to content

Commit

Permalink
See if normalizing line endings will fix windows
Browse files Browse the repository at this point in the history
  • Loading branch information
bookernath committed Oct 19, 2024
1 parent f4e1ca6 commit 69ecb2c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/pull_request_review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,14 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: Normalize line endings (Windows only)
if: runner.os == 'Windows'
run: |
git config --global core.autocrlf false
git config --global core.eol lf
git rm --cached -r .
git reset --hard
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v2-beta
with:
Expand Down

0 comments on commit 69ecb2c

Please sign in to comment.