From d13ce1056bcf91b5d1aaa742fade0781b20d4f22 Mon Sep 17 00:00:00 2001 From: Momtchil Momtchev Date: Thu, 18 Apr 2024 10:58:40 +0200 Subject: [PATCH] enable long paths on Windows --- .github/workflows/test-package.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test-package.yml b/.github/workflows/test-package.yml index bd09ed77..40fee4c3 100644 --- a/.github/workflows/test-package.yml +++ b/.github/workflows/test-package.yml @@ -83,6 +83,9 @@ jobs: node-version: [18.x, 20.x] steps: + - name: Enable long paths on Windows + run: git config --system core.longpaths true + if: runner.os == 'Windows' - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v4 with: