Skip to content
This repository was archived by the owner on Feb 19, 2026. It is now read-only.

NOTE: This extension is now part of OpenProject Core 🥳 #94

NOTE: This extension is now part of OpenProject Core 🥳

NOTE: This extension is now part of OpenProject Core 🥳 #94

Workflow file for this run

name: test.yml
on:
pull_request:
types: [opened, reopened, synchronize]
permissions:
contents: read
jobs:
units:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: actions/setup-node@v5
with:
node-version: '22.19'
cache: npm
cache-dependency-path: package-lock.json
- name: Install Dependencies
id: npm-i
run: npm i
- name: run tests
id: npm-test
run: CI=1 npm test