Skip to content

feat: implement TypeScript bindings for NVIDIA Management Library #9

feat: implement TypeScript bindings for NVIDIA Management Library

feat: implement TypeScript bindings for NVIDIA Management Library #9

Workflow file for this run

name: CI
on:
push:
branches: [main, dev]
pull_request:
branches: [main]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Run type check
run: npm run typecheck
- name: Build
run: npm run build
- name: Run unit tests
run: npm run test:unit
# Integration tests would require a GPU runner
# integration-test:
# runs-on: [self-hosted, gpu]
# steps:
# - uses: actions/checkout@v4
# - uses: actions/setup-node@v4
# with:
# node-version: 22.x
# - run: npm ci
# - run: npm run build
# - run: npm run test:integration