diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 6581c3b..4fb0fc9 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - node-version: [18.x, 22.x] + node-version: [18.x, 20.x, 22.x, 24.x] steps: - uses: actions/checkout@v4 @@ -34,7 +34,9 @@ jobs: continue-on-error: true - name: Run tests - run: npx jest --coverage --forceExit --maxWorkers=2 + run: npx jest --forceExit --maxWorkers=2 --no-cache + env: + NODE_OPTIONS: --max-old-space-size=4096 - name: Build run: npm run build