Skip to content

VAPI-2691 Initial commit #2

VAPI-2691 Initial commit

VAPI-2691 Initial commit #2

Workflow file for this run

name: Unit Tests
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install Node.js
uses: actions/setup-node@v5
with:
node-version: '24'
check-latest: true
- name: npm install
run: npm install
- name: npm test
run: npm test
- name: npm build
run: npm run build