Skip to content

fix(tests): Tests umgebungsunabhängig machen — CI und lokale DE-Umgebung #24

fix(tests): Tests umgebungsunabhängig machen — CI und lokale DE-Umgebung

fix(tests): Tests umgebungsunabhängig machen — CI und lokale DE-Umgebung #24

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
node-version: [20, 22, 24]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test