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
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |