Skip to content

Commit

Permalink
ci: force LF on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
axelrindle committed Feb 9, 2024
1 parent 7caa4be commit fe34f75
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ jobs:
- windows-latest
runs-on: ${{ matrix.os }}
steps:
- name: Set git to use LF
if: runner.os == 'Windows'
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
Expand Down

0 comments on commit fe34f75

Please sign in to comment.