Skip to content

Incremental development #24

Incremental development

Incremental development #24

Workflow file for this run

name: unit-tests
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 18.x
- run: npm ci
- run: npm run build --if-present
- run: npm run test:ci