mirror of
https://github.com/get-convex/agent-skills.git
synced 2026-09-14 19:28:17 +08:00
38 lines
919 B
YAML
38 lines
919 B
YAML
name: Prettier
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
prettier:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: pnpm/action-setup@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
cache: pnpm
|
|
- run: pnpm install --frozen-lockfile
|
|
- run: pnpm format-check
|
|
|
|
publish-skills-manifest:
|
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
|
needs: prettier
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: pnpm/action-setup@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
cache: pnpm
|
|
- run: pnpm install --frozen-lockfile
|
|
- run: pnpm publish-skills-manifest
|
|
env:
|
|
VERSION_CONVEX_DEV_AGENT_SKILLS_SYNC_TOKEN:
|
|
${{ secrets.VERSION_CONVEX_DEV_AGENT_SKILLS_SYNC_TOKEN }}
|