chore(deps): bump actions/checkout from 4 to 6 #87
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: ci | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| spelling: | |
| name: ✍️ Spelling Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Spell Check | |
| uses: streetsidesoftware/cspell-action@v6 | |
| with: | |
| files: '**/*.md' | |
| config: 'config/cspell.json' | |
| structure: | |
| name: 🏗️ Structure Validation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Check For Large Files (under 50KB) | |
| run: bash ./scripts/check_large_files.sh | |
| skill-validation: | |
| name: 📋 Skill Validation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Validate SKILL.md Files | |
| run: bash ./scripts/validate_skills.sh | |
| manifest-validation: | |
| name: 📦 Manifest Validation | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Validate Plugin Manifest | |
| run: bash ./scripts/validate_plugin_manifest.sh |