Skip to content
This repository was archived by the owner on Oct 14, 2025. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions .github/workflows/build-verification.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Build Verification

on:
pull_request:
branches: ["main"]
paths:
- "**/*.ts"
- "**/*.tsx"
- "**/*.css"
- "**/*.vue"
- "**/*.json"
- "package.json"
- "pnpm-lock.yaml"
- "**/package.json"
push:
branches: ["main"]
paths:
- "**/*.ts"
- "**/*.tsx"
- "**/*.css"
- "**/*.vue"
- "**/*.json"
- "package.json"
- "pnpm-lock.yaml"
- "**/package.json"

jobs:
build:
name: Build Check
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 #v4.2.2

- name: Setup Node.js
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 #v4.4.0
with:
node-version: 20
cache: "pnpm"

- name: Setup pnpm
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda #v4.1.0
with:
version: 9
run_install: false

- name: Install dependencies
run: pnpm install

- name: Run build
run: pnpm build

- name: Verify build artifacts
run: |
if [ ! -f "dist/plugin_package.zip" ]; then
echo "Build failed: plugin_package.zip not found"
exit 1
fi
2 changes: 1 addition & 1 deletion .github/workflows/sync-labels.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
name: "Meta Sync labels"
name: "Sync labels"
on:
workflow_dispatch:
push:
Expand Down
Loading