Skip to content

Commit 3d6ebd8

Browse files
committed
Merge branch 'develop' into feature/inject-runtime
2 parents 6e6671e + 4ecf421 commit 3d6ebd8

File tree

196 files changed

+9324
-21241
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

196 files changed

+9324
-21241
lines changed

.github/workflows/pull-request-develop.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v3
1919
- uses: actions/setup-node@v3
2020
with:
21-
node-version: 18
21+
node-version: 22.9.0
2222
# This only caches ~/.npm, therefore each subsequent
2323
# job needs to run `npm ci` to install deps from npm cache
2424
# alternative is to cache `node_modules` directly
@@ -39,7 +39,7 @@ jobs:
3939
- uses: actions/checkout@v3
4040
- uses: actions/setup-node@v3
4141
with:
42-
node-version: 18
42+
node-version: 22.9.0
4343
cache: npm
4444

4545
- name: "Install dependencies"
@@ -57,7 +57,7 @@ jobs:
5757
- uses: actions/checkout@v3
5858
- uses: actions/setup-node@v3
5959
with:
60-
node-version: 18
60+
node-version: 22.9.0
6161
cache: npm
6262

6363
- name: "Install dependencies"
@@ -80,7 +80,7 @@ jobs:
8080
- uses: actions/checkout@v3
8181
- uses: actions/setup-node@v3
8282
with:
83-
node-version: 18
83+
node-version: 22.9.0
8484
cache: npm
8585

8686
- name: "Install dependencies"
@@ -91,6 +91,8 @@ jobs:
9191

9292
- name: "Test"
9393
run: npm run test:ci
94+
env:
95+
IN_CI: true
9496

9597
integration:
9698
runs-on: ubuntu-latest
@@ -133,7 +135,7 @@ jobs:
133135
- uses: actions/checkout@v3
134136
- uses: actions/setup-node@v3
135137
with:
136-
node-version: 18
138+
node-version: 22.9.0
137139
cache: npm
138140

139141
- name: "Install dependencies"
@@ -143,7 +145,7 @@ jobs:
143145
run: npm run build
144146

145147
- name: "Migrate DB"
146-
run: npm run migrate
148+
run: npm run prisma:migrate
147149

148150
- name: "Wait for lightnet readiness"
149151
uses: o1-labs/wait-for-mina-network-action@v1

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v18.14.2
1+
v22.9.0

nx.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"options": {
66
"cacheableOperations": [
77
"build",
8+
"prisma:generate",
89
"lint",
910
"test",
1011
"integration"
@@ -13,6 +14,12 @@
1314
}
1415
},
1516
"targetDefaults": {
17+
"prisma:generate": {
18+
"inputs": [
19+
"{projectRoot}/package.json",
20+
"{projectRoot}/prisma/**/*"
21+
]
22+
},
1623
"build": {
1724
"dependsOn": [
1825
"^build"

0 commit comments

Comments
 (0)