Copy package.json and package-lock.json from spec repo to Microsoft.Widget fixture #291
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 . |