Skip to content

Add Node.js support to @effectionx/bdd package #5

Add Node.js support to @effectionx/bdd package

Add Node.js support to @effectionx/bdd package #5

Workflow file for this run

name: Verify (Node.js)
on:
workflow_call:
pull_request:
branches:
- main
permissions:
contents: read
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
node: ["22", "24"]
runs-on: ${{ matrix.os }}
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: install dependencies
run: npm install
- name: run tests
run: npm test