diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 80ab421..e8420bd 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -8,7 +8,7 @@ on: jobs: test: - runs-on: ubuntu-latest + runs-on: debian-latest strategy: matrix: @@ -32,7 +32,7 @@ jobs: - name: Lint run: npm run lint - - name: Run tests (coverage gate: lines >= 95%) + - name: 'Run tests (coverage gate: lines >= 95%)' run: npx jest --forceExit --maxWorkers=2 --no-cache --coverage env: NODE_OPTIONS: --max-old-space-size=4096 diff --git a/.gitea/workflows/publish.yml b/.gitea/workflows/publish.yml index 6695479..4bc1991 100644 --- a/.gitea/workflows/publish.yml +++ b/.gitea/workflows/publish.yml @@ -6,7 +6,7 @@ on: jobs: publish: - runs-on: ubuntu-latest + runs-on: debian-latest steps: - uses: actions/checkout@v4