feat(filter): sort tasks the way the Todoist apps do #667
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Skill Sync Check | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| skill-sync: | |
| name: SKILL.md Sync | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: '.nvmrc' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build | |
| run: npm run build | |
| - name: Check SKILL.md is in sync | |
| run: npm run check:skill-sync | |
| - name: Validate skill against agentskills.io spec | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| run: | | |
| if ! gh skill publish --help >/dev/null 2>&1; then | |
| echo "::notice::gh skill publish not available on this runner (preview feature, gh >= 2.90.0); skipping validation." | |
| exit 0 | |
| fi | |
| gh skill publish --dry-run |