Skip to content

bump to v0.7.3

bump to v0.7.3 #74

Workflow file for this run

name: Skill Drift Detection
# Runs after every push to main that touches source files.
# Validates every skill can still be cleanly applied and type-checked.
on:
push:
branches: [main]
paths:
- 'src/**'
- 'container/**'
- 'package.json'
workflow_dispatch:
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- name: Validate all skills against main
run: npx tsx scripts/validate-all-skills.ts
continue-on-error: true