Skip to content

Run the unit tests in CI #1

Run the unit tests in CI

Run the unit tests in CI #1

Workflow file for this run

name: Pull requests
on:
pull_request:
jobs:
unit-test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./core
strategy:
matrix:
node:
- "current"
- "lts/*"
name: Run unit tests on Node ${{ matrix.node }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Dependencies
uses: ./.github/workflows/actions/install-dependencies
with:
version: ${{ matrix.node }}
- name: Run unit tests
run: npm test