From 1fc456c629257fae12904b81b16f17a6a1cffad5 Mon Sep 17 00:00:00 2001 From: Christian Bromann Date: Sun, 4 Aug 2024 00:08:00 -0700 Subject: [PATCH] set lf in action --- .github/workflows/ci.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 066c0f5..545d657 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,10 +15,15 @@ jobs: os: [macos-13, ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v3 + - name: Set git to use LF + run: | + git config --global core.autocrlf false + git config --global core.eol lf + + - uses: actions/checkout@v4 - name: 💚 Use Node.js - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: 20