项目文件夹

文件
wehub-resource-sync 3265a2de25
CI / ci (push) Failing after 2s
Docker Build and Push / build-and-push (push) Failing after 1s
Publish MCP Server / publish (push) Failing after 2s
Test / Lint & Unit Tests (push) Failing after 0s
Test / E2E Tests (push) Failing after 1s
chore: import upstream snapshot with attribution
2026-07-13 12:11:19 +08:00

43 行
672 B
YAML

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: '24'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Type check
run: npx tsc --noEmit
- name: Lint check
run: npm run check
- name: Build
run: npm run build