Skip to content

News Fragment

News Fragment #9

Workflow file for this run

name: Unit Tests
on: [push, pull_request]
jobs:
unit:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- name: Main checkout
uses: actions/checkout@v3
- name: Unit tests
run: make test-ci