Skip to content

Commit d8018ae

Browse files
committed
chore: Update CI workflow
1 parent eac4fad commit d8018ae

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- uses: actions/checkout@v3
7373

7474
- name: Setup emscripten cache
75-
uses: actions/cache@v2
75+
uses: actions/cache@v3
7676
with:
7777
path: ~/.emscripten-cache
7878
key: ${{ runner.os }}-emscripten

.github/workflows/publish.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,18 @@ jobs:
1414
packages: write
1515
steps:
1616
- uses: actions/checkout@v3
17+
18+
- name: Setup emscripten cache
19+
uses: actions/cache@v3
20+
with:
21+
path: ~/.emscripten-cache
22+
key: ${{ runner.os }}-emscripten
23+
restore-keys: |
24+
${{ runner.os }}-emscripten
25+
1726
- uses: actions/setup-node@v3
1827
with:
19-
node-version: 16
28+
node-version: 18
2029
registry-url: https://registry.npmjs.org/
2130

2231
- name: Build

0 commit comments

Comments
 (0)