This commit is contained in:
Andras Schmelczer 2025-03-16 12:23:18 +00:00
parent 3eaf52549d
commit c62957087f
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
3 changed files with 10 additions and 4 deletions

View file

@ -36,6 +36,12 @@ jobs:
cargo clippy --all-targets --all-features
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
run: |
cd backend

View file

@ -26,7 +26,6 @@ jobs:
- name: Build wasm
run: |
cd backend
cargo install wasm-pack
wasm-pack build --target web sync_lib

View file

@ -14,10 +14,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
- name: Setup Node.js environment
uses: actions/setup-node@v4.2.0
with:
node-version: "18.x"
node-version: "22.x"
check-latest: true
- name: Build wasm
run: |