Skip to content

Introduces @github/models #12

Introduces @github/models

Introduces @github/models #12

Workflow file for this run

name: Test
on:
push:
pull_request:
permissions:
contents: read
jobs:
test:
name: 'Test Node.js (v${{ matrix.node-version }})'
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 24]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run test
- run: npm publish --dry-run