From e753c9df2f43c3c3a58b4a813a33359a695831df Mon Sep 17 00:00:00 2001 From: isaacs Date: Wed, 6 Jan 2021 15:06:27 -0800 Subject: [PATCH] actions: turn on core.longpaths for windows --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b3485df8..e70de110 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,10 @@ jobs: shell: ${{ matrix.platform.shell }} steps: + # there are files here that make windows unhappy by default + - name: Support longpaths + run: git config --global core.longpaths true + - name: Checkout Repository uses: actions/checkout@v1.1.0 @@ -35,6 +39,5 @@ jobs: - name: Install dependencies run: npm install - # Run for all environments - name: Run Tap Tests run: npm test -- -c -t0