feat: single installer CLI, app.info metrics, e2e test suite, and skill refinements #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: | |
| pull_request: | |
| branches: ["**"] | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| static-tests: | |
| name: Static skill tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "22" | |
| cache: "npm" | |
| cache-dependency-path: tests/package-lock.json | |
| - name: Install test dependencies | |
| run: npm install | |
| working-directory: tests | |
| - name: Run static tests | |
| run: npm test | |
| working-directory: tests | |
| installer-tests: | |
| name: Installer tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| # Match fw-setup target (FDK 10.x on Node 24.x); installer is exercised on 24 locally | |
| node-version: "24" | |
| cache: "npm" | |
| cache-dependency-path: installer/package-lock.json | |
| - name: Install installer dependencies | |
| run: npm install | |
| working-directory: installer | |
| - name: Run installer tests | |
| run: npm test | |
| working-directory: installer |