2 Commits

Author SHA1 Message Date
0e6e848a29 Add renovate.json
All checks were successful
ci/woodpecker/pr/pr Pipeline was successful
2026-02-22 03:26:23 +00:00
68082fd893 patch: fix ci parallelism (#8)
Reviewed-on: #8
Co-authored-by: keligrubb <keligrubb324@gmail.com>
Co-committed-by: keligrubb <keligrubb324@gmail.com>
2026-02-22 03:11:23 +00:00
2 changed files with 11 additions and 5 deletions

View File

@@ -2,25 +2,28 @@ when:
- event: pull_request
steps:
- name: lint
- name: install
image: node:24-slim
depends_on: []
commands:
- npm ci
- name: lint
image: node:24-slim
depends_on: [install]
commands:
- npm run lint
- name: test
image: node:24-slim
depends_on: []
depends_on: [install]
commands:
- npm ci
- npm run test
- name: e2e
image: mcr.microsoft.com/playwright:v1.58.2-noble
depends_on: []
depends_on: [install]
commands:
- npm ci
- ./scripts/gen-dev-cert.sh
- npm run test:e2e
environment:

3
renovate.json Normal file
View File

@@ -0,0 +1,3 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
}