Skip to content

fix(vscode): bump @prompty deps to alpha.7, auto-detect package versi… #25

fix(vscode): bump @prompty deps to alpha.7, auto-detect package versi…

fix(vscode): bump @prompty deps to alpha.7, auto-detect package versi… #25

name: TypeScript CI
on:
push:
branches: [main]
paths: ['runtime/typescript/**']
pull_request:
paths: ['runtime/typescript/**']
workflow_call:
workflow_dispatch:
permissions:
contents: read
jobs:
build-and-test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
node: [22, 24]
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: runtime/typescript
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run build
- run: npm run test
- run: npm run lint