release: v2026.4.4.0403 — Gemma 4 local inference migration #66
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: EverClaw CI/CD Pipeline | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| syntax-check: | |
| name: Syntax & Shell Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - run: npm ci | |
| - name: Node syntax check | |
| run: node --check scripts/*.mjs | |
| - name: Shell syntax check | |
| run: bash -n scripts/*.sh | |
| unit-tests: | |
| name: Wallet Tests | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - run: npm ci | |
| - name: Run wallet test suite | |
| run: node --test scripts/everclaw-wallet.test.mjs | |
| env: | |
| EVERCLAW_YES: "1" | |
| proxy-tests: | |
| name: Proxy Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - run: npm ci | |
| - name: Run proxy test suite | |
| run: node --test scripts/morpheus-proxy.test.mjs | |
| security-scan: | |
| name: Secret Scanning | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install gitleaks (CLI) | |
| run: | | |
| wget -q https://github.com/gitleaks/gitleaks/releases/download/v8.21.2/gitleaks_8.21.2_linux_x64.tar.gz | |
| tar -xzf gitleaks_8.21.2_linux_x64.tar.gz | |
| sudo mv gitleaks /usr/local/bin/ | |
| - name: Scan for secrets | |
| run: gitleaks detect --source . --verbose --no-git | |
| docker-smoke: | |
| name: Docker Build Smoke Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build Docker image | |
| run: docker build -t everclaw-test . | |
| env: | |
| DOCKER_BUILDKIT: "1" | |
| - name: Basic container smoke test | |
| run: docker run --rm everclaw-test node --check /home/node/.openclaw/workspace/skills/everclaw/scripts/setup.mjs | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true |