Skip to content

Commit baf8d98

Browse files
committed
added: Add workflow to verify that all commits in a PR are signed
1 parent ba8695d commit baf8d98

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.nvmrc

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

changelogs/2025-10-23-060458.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
type: Changed
2+
issues: []
3+
description: Update Node to version 22.18.0
4+
public: true
5+
tags:
6+
- None

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
],
1919
"engines": {
2020
"vscode": "^1.66.0",
21-
"node": "^18.18.0"
21+
"node": "^22.18.0"
2222
},
2323
"scripts": {
2424
"build": "license-checker-rseidelsohn --direct --files licenses && cross-env NODE_ENV=production pnpm compile",

src/cli.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ const badCommand = jest.fn().mockImplementation(() => {
1212
throw error;
1313
});
1414

15+
// eslint-disable-next-line @typescript-eslint/no-unsafe-return
1516
jest.mock("@1password/op-js", () => ({
16-
// @ts-expect-error ok bud
1717
...jest.requireActual("@1password/op-js"),
1818
setClientInfo: jest.fn(),
1919
validateCli: jest.fn(),

0 commit comments

Comments
 (0)