We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9e8338 commit 74099fcCopy full SHA for 74099fc
1 file changed
.github/workflows/static.yml
@@ -23,12 +23,14 @@ jobs:
23
uses: actions/checkout@v6
24
25
- name: Cache Emscripten
26
+ id: cache-emsdk
27
uses: actions/cache@v4
28
with:
29
path: ~/emsdk
30
key: emsdk-${{ runner.os }}-latest
31
32
- name: Install Emscripten
33
+ if: steps.cache-emsdk.outputs.cache-hit != 'true'
34
run: |
35
git clone https://github.com/emscripten-core/emsdk.git ~/emsdk
36
~/emsdk/emsdk install latest
0 commit comments