Skip to content

Add EventSourceUrl.test.js #48

Add EventSourceUrl.test.js

Add EventSourceUrl.test.js #48

Workflow file for this run

name: Param builder NodeJS CI
on:
push:
paths:
- 'nodejs/**'
tags-ignore:
- 'v*' # Ignores version tag pushes
branches:
- '**'
pull_request:
paths:
- 'nodejs/**'
workflow_dispatch: # Enables manual trigger
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: nodejs/capi-param-builder
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run tests
run: npm test