Skip to content

Commit 0ed9153

Browse files
authored
deps: StarlingMonkey, Jco upgrades (#125)
1 parent b4b327d commit 0ed9153

File tree

7 files changed

+89
-1535
lines changed

7 files changed

+89
-1535
lines changed

.github/workflows/main.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,16 @@ jobs:
4848
- name: Install NPM packages
4949
run: npm install
5050

51+
- name: Get StarlingMonkey Commit
52+
id: starlingmonkey-commit
53+
run: echo "STARLINGMONKEY_HASH=$(git submodule status | head -c9 | tail -c8)" >> "$GITHUB_OUTPUT"
54+
5155
- name: Cache StarlingMonkey
5256
uses: actions/cache@v3
5357
id: starlingmonkey-build
5458
with:
5559
path: build-release
56-
key: engine-build-${{ hashFiles('.git/modules/StarlingMonkey/FETCH_HEAD') }}
60+
key: engine-build-${{ steps.starlingmonkey-commit.outputs.STARLINGMONKEY_HASH }}
5761

5862
- name: Build
5963
run: npm run build

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ example/package-lock.json
1010
example/hello.component.wasm
1111
/build-debug
1212
/build-release
13-
.vscode
13+
.vscode
14+
/package-lock.json

0 commit comments

Comments
 (0)