Skip to content

Feat: Introduce update_assets tool, full NFS compatibility and MCP token optimizations #61

Feat: Introduce update_assets tool, full NFS compatibility and MCP token optimizations

Feat: Introduce update_assets tool, full NFS compatibility and MCP token optimizations #61

Workflow file for this run

name: CI
on:
push:
branches: [main, feature/*]
pull_request:
branches: [main]
jobs:
ci:
name: Lint · Test · Build
runs-on: ubuntu-latest
env:
NODE_OPTIONS: --max-old-space-size=4096
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Lint
run: yarn lint:all
- name: Test
run: yarn test
- name: Build
run: yarn build:all