From bed3fe71f6cca2a91febd90e6f669021ecf174bb Mon Sep 17 00:00:00 2001 From: Louis Lam Date: Sat, 29 Mar 2025 15:56:13 +0800 Subject: [PATCH] Try to fix crlf issue on Windows --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 71637c8..9ded55e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,11 +19,11 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Checkout Code + run: | # Mainly for Windows + git config --global core.autocrlf false + git config --global core.eol lf uses: actions/checkout@v4 - - run: git config --global core.autocrlf false # Mainly for Windows - - uses: actions/checkout@v3 - - name: Setup Node.js uses: actions/setup-node@v3 with: