Skip to content

build(deps): Bump @mysten/sui from 2.17.0 to 2.18.0 in /backend #77

build(deps): Bump @mysten/sui from 2.17.0 to 2.18.0 in /backend

build(deps): Bump @mysten/sui from 2.17.0 to 2.18.0 in /backend #77

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build:
runs-on: ubuntu-latest
services: {}
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 26
- name: Build backend
working-directory: backend
run: |
if [ -f package-lock.json ] || [ -f npm-shrinkwrap.json ]; then
npm ci
else
echo "No lockfile found; running npm install (non-deterministic in CI)."
npm install --no-audit --no-fund
fi
npm run build
- name: Build SDK
working-directory: sdk
run: |
if [ -f package-lock.json ] || [ -f npm-shrinkwrap.json ]; then
npm ci
else
echo "No lockfile found; running npm install (non-deterministic in CI)."
npm install --no-audit --no-fund
fi
npm run build
- name: Typecheck backend + SDK
run: |
(cd backend && npm run build)
(cd sdk && npm run build:types) || true
- name: Run Move tests if `sui` available
run: |
if command -v sui >/dev/null 2>&1; then
echo "sui found, running move tests"
cd contracts/suioutkit && sui move test
else
echo "sui not installed on runner — skipping Move tests"
fi