Skip to content

Merge branch 'main' of https://github.com/SpectrAI-Initiative/InnoClaw #120

Merge branch 'main' of https://github.com/SpectrAI-Initiative/InnoClaw

Merge branch 'main' of https://github.com/SpectrAI-Initiative/InnoClaw #120

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-test-build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [24, 25]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm install --ignore-scripts=false
- name: Lint
run: npm run lint
- name: Test
run: npm test
- name: Build
run: npm run build
env:
NEXT_TELEMETRY_DISABLED: 1