feat(ustva): § 13b- und Auslands-Kennzahlen automatisch (Kz 45/46/47/67) #18
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: Tests | |
| # Läuft NICHT bei jedem Commit. Die Test-Suite wird nur dann ausgeführt, wenn | |
| # eine Version festgenagelt wird — d. h. ein Tag der Form v* (z. B. v2.0.0) | |
| # gepusht wird — sowie manuell über den "Run workflow"-Knopf. | |
| on: | |
| push: | |
| tags: | |
| - 'v*' | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Quellcode auschecken | |
| uses: actions/checkout@v4 | |
| - name: Node.js einrichten | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| # OpenBilanz hat keine npm-Abhängigkeiten — kein "npm install" nötig. | |
| - name: Test-Suite ausführen | |
| run: npm test |