We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c59168 commit 87d0af6Copy full SHA for 87d0af6
.github/workflows/arch-docs.yml
@@ -18,6 +18,14 @@ jobs:
18
steps:
19
- uses: actions/checkout@v4
20
21
+ - name: Trim non-essential directories
22
+ run: |
23
+ for dir in test tests __tests__ spec specs benchmarks bench docs documentation \
24
+ examples example fixtures migrations assets third_party \
25
+ .yarn .cache e2e integration_tests testdata; do
26
+ rm -rf "$dir" || true
27
+ done
28
+
29
- uses: supermodeltools/arch-docs@main
30
id: docs
31
with:
0 commit comments