We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8775891 commit e737a64Copy full SHA for e737a64
.github/workflows/ci.yaml
@@ -18,6 +18,8 @@ jobs:
18
19
- name: Checkout
20
uses: actions/checkout@v2
21
+ with:
22
+ fetch-depth: 0
23
24
- name: Cache Node Modules
25
uses: actions/cache@v2
@@ -39,3 +41,16 @@ jobs:
39
41
- name: Formatting
40
42
if: always()
43
run: yarn format:check
44
+
45
+ - name: Find old files
46
+ uses: w3f/action-find-old-files@1.0.1
47
+ id: old_files
48
49
+ minAge: 60
50
+ dirs: '["."]'
51
52
+ - name: Save file
53
+ uses: actions/upload-artifact@v2
54
55
+ name: old-docs
56
+ path: ${{ steps.old_files.outputs.files }}
0 commit comments