Skip to content

port: skill curation updates from ECC #214

port: skill curation updates from ECC

port: skill curation updates from ECC #214

Workflow file for this run

name: Gemini CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
node: ['20.x', '22.x']
uses: ./.github/workflows/reusable-test.yml
with:
os: ${{ matrix.os }}
node-version: ${{ matrix.node }}
package-manager: 'npm'
validate:
uses: ./.github/workflows/reusable-validate.yml
with:
node-version: '22.x'
security:
name: Security Scan
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run npm audit
run: npm audit --audit-level=high
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22.x'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint