fix ci
This commit is contained in:
parent
3eaf52549d
commit
c62957087f
3 changed files with 10 additions and 4 deletions
6
.github/workflows/check.yml
vendored
6
.github/workflows/check.yml
vendored
|
|
@ -36,6 +36,12 @@ jobs:
|
||||||
cargo clippy --all-targets --all-features
|
cargo clippy --all-targets --all-features
|
||||||
cargo fmt --all -- --check
|
cargo fmt --all -- --check
|
||||||
|
|
||||||
|
- name: Setup Node.js environment
|
||||||
|
uses: actions/setup-node@v4.2.0
|
||||||
|
with:
|
||||||
|
node-version: "22.x"
|
||||||
|
check-latest: true
|
||||||
|
|
||||||
- name: Test backend
|
- name: Test backend
|
||||||
run: |
|
run: |
|
||||||
cd backend
|
cd backend
|
||||||
|
|
|
||||||
1
.github/workflows/e2e.yml
vendored
1
.github/workflows/e2e.yml
vendored
|
|
@ -26,7 +26,6 @@ jobs:
|
||||||
|
|
||||||
- name: Build wasm
|
- name: Build wasm
|
||||||
run: |
|
run: |
|
||||||
cd backend
|
|
||||||
cargo install wasm-pack
|
cargo install wasm-pack
|
||||||
wasm-pack build --target web sync_lib
|
wasm-pack build --target web sync_lib
|
||||||
|
|
||||||
|
|
|
||||||
7
.github/workflows/publish-plugin.yml
vendored
7
.github/workflows/publish-plugin.yml
vendored
|
|
@ -14,10 +14,11 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Use Node.js
|
- name: Setup Node.js environment
|
||||||
uses: actions/setup-node@v3
|
uses: actions/setup-node@v4.2.0
|
||||||
with:
|
with:
|
||||||
node-version: "18.x"
|
node-version: "22.x"
|
||||||
|
check-latest: true
|
||||||
|
|
||||||
- name: Build wasm
|
- name: Build wasm
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue