Skip to content

Commit 2b66b9b

Browse files
committed
ci: update Node.js version and pnpm in configuration files
1 parent adc503f commit 2b66b9b

File tree

6 files changed

+4724
-3954
lines changed

6 files changed

+4724
-3954
lines changed

.github/workflows/node.js.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
steps:
3030
- uses: actions/checkout@v4
3131

32-
- uses: pnpm/action-setup@v3
32+
- uses: pnpm/action-setup@v4
3333
with:
3434
version: latest
3535

@@ -64,14 +64,14 @@ jobs:
6464
steps:
6565
- uses: actions/checkout@v4
6666

67-
- uses: pnpm/action-setup@v3
67+
- uses: pnpm/action-setup@v4
6868
with:
6969
version: latest
7070

7171
- name: Setup Node.js 20
7272
uses: actions/setup-node@v4
7373
with:
74-
node-version: 20
74+
node-version: 20.19
7575
registry-url: 'https://registry.npmjs.org'
7676
scope: '@fizzbuds'
7777
cache: 'pnpm'

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v18.16.1
1+
v20.19

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,6 @@
2828
"lint-staged": {
2929
"*.ts": "eslint --fix",
3030
"*.json": "prettier --write"
31-
}
31+
},
32+
"packageManager": "pnpm@10.8.1+sha512.c50088ba998c67b8ca8c99df8a5e02fd2ae2e2b29aaf238feaa9e124248d3f48f9fb6db2424949ff901cffbb5e0f0cc1ad6aedb602cd29450751d11c35023677"
3233
}

packages/ddd-toolkit/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"devDependencies": {
2525
"@types/jest": "^29.5.2",
2626
"@types/lodash": "^4.14.195",
27-
"@types/node": "^20.3.1",
27+
"@types/node": "^20.17.46",
2828
"@typescript-eslint/eslint-plugin": "^6.18.1",
2929
"@typescript-eslint/parser": "^6.18.1",
3030
"cspell": "^8.3.2",

packages/ddd-toolkit/src/repo/mongo-aggregate-repo.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ export class MongoAggregateRepo<A, AM extends DocumentWithId> implements IAggreg
7070
},
7171
{ upsert: true, session, ignoreUndefined: true },
7272
);
73+
// FIXME in this point we don't know whether the aggregate will be successfully saved or not
7374
this.logger.debug(
7475
`Aggregate with id ${
7576
aggregateModel.id

0 commit comments

Comments
 (0)