Skip to content

Bump the development group with 6 updates #134

Bump the development group with 6 updates

Bump the development group with 6 updates #134

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
types: [opened, reopened, synchronize, ready_for_review]
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.event_name == 'pull_request' && github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
validate:
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Node
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 24
cache: npm
- name: Install dependencies
run: npm ci
- name: Audit dependencies
run: npm audit
- name: Typecheck
run: npm run typecheck
- name: Test
run: npm test
env:
OPENAI_API_KEY: ""
- name: Build
run: npm run build
env:
OPENAI_API_KEY: ""
- name: Package smoke
run: npm pack --dry-run