Skip to content

test(reporter-factory): update test suite for reporter #152

test(reporter-factory): update test suite for reporter

test(reporter-factory): update test suite for reporter #152

Workflow file for this run

name: Test CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
jobs:
test:
name: Test on Node.js ${{ matrix.node }} and ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
node: [20]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout the repo
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: yarn
- name: Install dependencies
run: yarn
- name: Test
run: yarn run test