Point the login instructions at the extension.dev device flow #37
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: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Checkout Extension.js (conventions-sync source of truth) | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: extension-js/extension.js | |
| path: extension.js | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 24 | |
| - name: Test | |
| run: node --test test/*.test.mjs | |
| env: | |
| EXTENSION_JS_REPO: ${{ github.workspace }}/extension.js | |
| - name: Validate against the Agent Skills spec | |
| run: npx -y skills-ref validate skills/extension-dev |