Skip to content

Commit f33aa13

Browse files
committed
reduce wildcardiness of upload-artifact
There's a known issue with actions glob that keeps walking the tree directory tree even if the files are already excluded.
1 parent b6653ed commit f33aa13

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/pr-test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,8 @@ jobs:
203203
retention-days: 1
204204
path: |
205205
!node_modules
206-
**/.nyc_output/**
206+
packages/*/.nyc_output/**
207+
207208
208209
browser-test:
209210
needs: compile

0 commit comments

Comments
 (0)