Skip to content

Merge pull request #262 from multiparty/test #77

Merge pull request #262 from multiparty/test

Merge pull request #262 from multiparty/test #77

Workflow file for this run

name: Test
on:
workflow_dispatch:
push:
branches:
- master
tags:
- "v*.*.*"
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Run Jest Tests
run: npx jest --coverage --runInBand tests/regr-tests