File tree Expand file tree Collapse file tree 3 files changed +27
-344
lines changed
Expand file tree Collapse file tree 3 files changed +27
-344
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ jobs:
129129 path : |
130130 ~/.cargo/registry
131131 ~/.cargo/git
132- key : ${{ runner.os }}-cargo-${{ matrix.band }}-${{ hashFiles('codepress-swc-plugin/src/**') }}
132+ key : ${{ runner.os }}-cargo-${{ matrix.band }}-${{ hashFiles('codepress-swc-plugin/src/**', 'scripts/build-swc.mjs' ) }}
133133 restore-keys : |
134134 ${{ runner.os }}-cargo-${{ matrix.band }}-
135135 ${{ runner.os }}-cargo-
@@ -142,6 +142,15 @@ jobs:
142142 env :
143143 BAND : ${{ matrix.band }}
144144
145+ - name : Verify WASM build
146+ run : |
147+ echo "Built WASM files:"
148+ ls -la swc/*.wasm
149+ for f in swc/*.wasm; do
150+ echo "MD5 of $f:"
151+ md5sum "$f" || md5 "$f"
152+ done
153+
145154 - name : Upload WASM artifact
146155 uses : actions/upload-artifact@v4
147156 with :
You can’t perform that action at this time.
0 commit comments