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 81e9c34 commit 31e5bc7Copy full SHA for 31e5bc7
β.github/workflows/validate.yml
@@ -34,6 +34,13 @@ jobs:
34
- name: π¨ Build
35
run: npm run build
36
37
+ - name: πΎ Cache build output
38
+ uses: actions/cache/save@v4
39
+ with:
40
+ path: |
41
+ dist/
42
+ key: build-${{ matrix.node-version }}-${{ github.sha }}
43
+
44
- name: π Type check
45
run: npm run typecheck
46
@@ -94,6 +101,14 @@ jobs:
94
101
- name: β¬οΈ Checkout repo
95
102
uses: actions/checkout@v4
96
103
104
+ - name: π Restore build output
105
+ uses: actions/cache/restore@v4
106
107
108
109
+ key: build-24-${{ github.sha }}
110
+ fail-on-cache-miss: false
111
97
112
- name: π Release
98
113
uses: cycjimmy/semantic-release-action@v4
99
114
with:
0 commit comments