Skip to content

Trim skill descriptions #10

Trim skill descriptions

Trim skill descriptions #10

Workflow file for this run

name: Prettier
on:
pull_request:
push:
branches:
- main
jobs:
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run 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: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run publish-skills-manifest
env:
VERSION_CONVEX_DEV_AGENT_SKILLS_SYNC_TOKEN: ${{ secrets.VERSION_CONVEX_DEV_AGENT_SKILLS_SYNC_TOKEN }}