Skip to content

chore: auto-sync plugin list #195

chore: auto-sync plugin list

chore: auto-sync plugin list #195

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- path: plugins/mutils
- path: plugins/sdd
- path: packages/sdd-webapp
- path: packages/cc-plugin-lib
steps:
- uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Install dependencies (root)
run: bun install --frozen-lockfile
- name: Install dependencies (package)
working-directory: ${{ matrix.path }}
run: bun install --frozen-lockfile
- name: Run type check
working-directory: ${{ matrix.path }}
run: bun run typecheck
- name: Run lint
working-directory: ${{ matrix.path }}
run: bun run check
- name: Build (packages only)
if: startsWith(matrix.path, 'packages/')
working-directory: ${{ matrix.path }}
run: bun run build