Skip to content

Commit 8997393

Browse files
committed
fix ci
Signed-off-by: karthik2804 <[email protected]>
1 parent 514ce0d commit 8997393

File tree

6 files changed

+421
-7
lines changed

6 files changed

+421
-7
lines changed

.github/workflows/test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ jobs:
5959
steps:
6060
- uses: actions/checkout@v3
6161

62-
- name: Use Node.js 20
62+
- name: Use Node.js 22
6363
uses: actions/setup-node@v3
6464
with:
65-
node-version: 20
65+
node-version: 22
6666

6767
- name: Setup `spin`
6868
uses: fermyon/actions/spin/setup@v1

packages/build-tools/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ all: build
99
build:
1010
cargo build --release --target $(CARGO_BUILD_TARGET)
1111
mkdir -p $(OUTPUT_DIR)
12-
jco new $(WASM_FILE) -o $(OUTPUT_WASM) --wasi-reactor
13-
jco transpile -q --name wit_tools $(OUTPUT_WASM) -o $(LIB_DIR) -- -O1
12+
npx @bytecodealliance/jco new $(WASM_FILE) -o $(OUTPUT_WASM) --wasi-reactor
13+
npx @bytecodealliance/jco transpile -q --name wit_tools $(OUTPUT_WASM) -o $(LIB_DIR) -- -O1
1414

1515
clean:
1616
cargo clean

0 commit comments

Comments
 (0)