Skip to content

feat(03): add donna:focus prioritized now view skill #25

feat(03): add donna:focus prioritized now view skill

feat(03): add donna:focus prioritized now view skill #25

Workflow file for this run

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