feat(03): add donna:focus prioritized now view skill #23
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: Validate PR | |
| on: | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| # ==================================================================== | |
| # Lint | |
| # ==================================================================== | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| - run: npm ci | |
| - run: npm run lint | |
| # ==================================================================== | |
| # Tests | |
| # ==================================================================== | |
| test: | |
| name: Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| - run: npm ci | |
| - run: npm test | |
| - run: npm pack --dry-run | |
| # ==================================================================== | |
| # Build package | |
| # ==================================================================== | |
| build: | |
| name: Test the build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| - run: npm ci | |
| - run: npm pack --dry-run |