Remove benchmark package.json files and add script to download latest code from repo #294
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 Evaluations | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - '.github/skills/**' | |
| pull_request: | |
| paths: | |
| - '.github/skills/**' | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| check-skills: | |
| name: Skill Compliance Check (Vally lint) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '22' | |
| - name: Install Vally CLI | |
| run: npm install -g @microsoft/vally-cli@0.4.0 | |
| - name: Lint skills | |
| run: vally lint . |