From fd652c9d16783f7f0f910857418946893c37b539 Mon Sep 17 00:00:00 2001 From: Dominik Wilkowski Date: Fri, 14 Jun 2024 12:18:46 +1000 Subject: [PATCH] disable CRLF conversion on windows --- .github/workflows/testing.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 3e35e4f..e065570 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -162,6 +162,11 @@ jobs: working-directory: ./nodejs steps: + - if: matrix.os == 'windows' + run: | + git config --global core.autocrlf false + git config --global core.eol lf + - uses: actions/checkout@v4 - name: Setup Node