From e9f6610acebf02688325051c4940685da1e245c5 Mon Sep 17 00:00:00 2001 From: fisker Cheung Date: Mon, 25 Apr 2022 16:04:33 +0800 Subject: [PATCH] Remove `core.autocrlf` config on CI (#12731) --- .github/workflows/nodejs.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 6fab04689f0c..125896112f59 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -111,9 +111,7 @@ jobs: steps: - name: Set git config shell: bash - run: | - git config --global core.autocrlf false - git config --global core.symlinks true + run: git config --global core.symlinks true if: runner.os == 'Windows' - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} @@ -144,9 +142,7 @@ jobs: steps: - name: Set git config shell: bash - run: | - git config --global core.autocrlf false - git config --global core.symlinks true + run: git config --global core.symlinks true if: runner.os == 'Windows' - uses: actions/checkout@v3 - name: Use Node.js LTS