Skip to content

feat: update mcpb manifest to v0.3 #260

feat: update mcpb manifest to v0.3

feat: update mcpb manifest to v0.3 #260

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
if: github.event_name != 'push' || !startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
name: πŸ§ͺ Lint, Format, TypeCheck, Test, Build
steps:
- name: πŸ“₯ Checkout
uses: actions/checkout@v6
- name: 🟒 Setup Node.js
uses: actions/setup-node@v5
with:
node-version: '22'
cache: 'npm'
- name: πŸ“¦ Install deps
run: npm ci
- name: πŸ” Lint
run: npm run lint
- name: 🎨 Format check (Prettier)
run: npm run format
- name: βœ… Type check
run: npm run typecheck:all
- name: πŸ§ͺ Run tests
run: npm test
- name: πŸ›  Build
run: npm run build