Skip to content

Commit e753c9d

Browse files
isaacsruyadorno
authored andcommittedJan 7, 2021
actions: turn on core.longpaths for windows
1 parent 0f1211f commit e753c9d

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎.github/workflows/ci.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ jobs:
2424
shell: ${{ matrix.platform.shell }}
2525

2626
steps:
27+
# there are files here that make windows unhappy by default
28+
- name: Support longpaths
29+
run: git config --global core.longpaths true
30+
2731
- name: Checkout Repository
2832
uses: actions/checkout@v1.1.0
2933

@@ -35,6 +39,5 @@ jobs:
3539
- name: Install dependencies
3640
run: npm install
3741

38-
# Run for all environments
3942
- name: Run Tap Tests
4043
run: npm test -- -c -t0

0 commit comments

Comments
 (0)
Please sign in to comment.