Skip to content
This repository was archived by the owner on Jul 10, 2026. It is now read-only.

Commit 4b4b259

Browse files
alejoamirasxorsal
andauthored
ci: fixes tests and adds dependabot (#22)
By the way, tests runs were broken, bad indentation on .yml file. So, there might be some stuff that went through the cracks. I'm already fixing the jest => vitest thing on another incoming PR. --------- Co-authored-by: xorsal <zorzal@wonderland.xyz>
1 parent 493551a commit 4b4b259

3 files changed

Lines changed: 49 additions & 6 deletions

File tree

.github/dependabot.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
version: 2
2+
updates:
3+
# Enable version updates for yarn
4+
- package-ecosystem: "npm"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"
8+
day: "monday"
9+
time: "09:00"
10+
open-pull-requests-limit: 10
11+
commit-message:
12+
prefix: "chore"
13+
prefix-development: "chore"
14+
include: "scope"
15+
# Group related dependencies together
16+
groups:
17+
aztec-dependencies:
18+
patterns:
19+
- "@aztec/*"
20+
dev-dependencies:
21+
patterns:
22+
- "@types/*"
23+
- "prettier"
24+
- "husky"
25+
- "lint-staged"
26+
- "vitest"
27+
- "typescript"
28+
29+
# Enable version updates for GitHub Actions
30+
- package-ecosystem: "github-actions"
31+
directory: "/"
32+
schedule:
33+
interval: "weekly"
34+
day: "monday"
35+
time: "09:00"
36+
open-pull-requests-limit: 5
37+
commit-message:
38+
prefix: "ci"
39+
include: "scope"

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
runs-on: ubuntu-latest
1313
timeout-minutes: 60
1414

15-
steps:
16-
- name: Checkout repository
17-
uses: actions/checkout@v4
18-
with:
19-
fetch-depth: 0
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
2020

2121
- name: Install and cache yarn
2222
uses: actions/setup-node@v4

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,9 @@
4141
"config": {
4242
"aztecVersion": "1.2.1"
4343
},
44-
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
44+
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
45+
"engines": {
46+
"node": ">=22.0.0",
47+
"yarn": ">=1.22.0"
48+
}
4549
}

0 commit comments

Comments
 (0)