Skip to content

Benr/feat support 1 27 sdk #82

Benr/feat support 1 27 sdk

Benr/feat support 1 27 sdk #82

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "25.3.0"
cache: "npm"
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: npm ci
- name: Security audit
run: npm audit --audit-level=critical
- name: Typecheck
run: npm run typecheck
- name: Run unit tests
run: npm run test:run
- name: Build
run: npm run build