From 7b90497500b8bc930dbb50d6ff06069af7f75888 Mon Sep 17 00:00:00 2001 From: peterwoodworth Date: Fri, 30 Jun 2023 16:11:12 -0700 Subject: [PATCH] chore: disable auto crlf in unit tests --- .github/workflows/development.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml index aa93fb9..b583ab4 100644 --- a/.github/workflows/development.yml +++ b/.github/workflows/development.yml @@ -100,5 +100,7 @@ jobs: node-version: ${{ matrix.node }} - name: "Install dependencies" uses: bahmutov/npm-install@v1 + - name: "Disable auto CRLF" + run: git config --global core.autocrlf false - name: "Run tests" run: npm run test --if-present