Skip to content

Commit 7edb81f

Browse files
committed
Updated .github - Node versions/reviewers
Added "--ignore-scripts" as flagged by SonarQube
1 parent 33adbf0 commit 7edb81f

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ updates:
88
target-branch: development
99
reviewers:
1010
- laurent-yoti
11-
- michaelyoti
11+
- khalifah-marfadi
1212
- abdalmajeed-yoti
1313
assignees:
1414
- laurent-yoti

.github/workflows/tests.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- run: npm update
2121

22-
- run: npm install --no-audit
22+
- run: npm install --ignore-scripts --no-audit
2323

2424
- run: npm run audit
2525

@@ -45,24 +45,24 @@ jobs:
4545

4646
- uses: actions/setup-node@v4
4747
with:
48-
node-version: '14'
48+
node-version: '16'
4949

50-
- run: npm install
50+
- run: npm install --ignore-scripts
5151

5252
- run: npm update
5353

5454
- name: print versions
5555
run: echo npm $(npm -v), node $(node -v)
5656

57-
- run: pushd ./examples/aml-check && npm install && npm update && npm run lint && popd
57+
- run: pushd ./examples/aml-check && npm install --ignore-scripts && npm update && npm run lint && popd
5858

59-
- run: pushd ./examples/idv && npm install && npm update && npm run lint && popd
59+
- run: pushd ./examples/idv && npm install --ignore-scripts && npm update && npm run lint && popd
6060

61-
- run: pushd ./examples/idv-identity-checks && npm install && npm update && npm run lint && popd
61+
- run: pushd ./examples/idv-identity-checks && npm install --ignore-scripts && npm update && npm run lint && popd
6262

63-
- run: pushd ./examples/profile && npm install && npm update && npm run lint && popd
63+
- run: pushd ./examples/profile && npm install --ignore-scripts && npm update && npm run lint && popd
6464

65-
- run: pushd ./examples/profile-identity-checks && npm install && npm update && npm run lint && popd
65+
- run: pushd ./examples/profile-identity-checks && npm install --ignore-scripts && npm update && npm run lint && popd
6666

6767
node-compatibility:
6868
name: Node ${{ matrix.node-version }}
@@ -75,7 +75,7 @@ jobs:
7575
strategy:
7676
fail-fast: false
7777
matrix:
78-
node-version: [14, 16, 18, 20]
78+
node-version: [14, 16, 18, 20, 22]
7979

8080
steps:
8181
- uses: actions/checkout@v4
@@ -84,7 +84,7 @@ jobs:
8484
with:
8585
node-version: ${{ matrix.node-version }}
8686

87-
- run: npm install
87+
- run: npm install --ignore-scripts
8888

8989
- run: npm update
9090

@@ -108,7 +108,7 @@ jobs:
108108

109109
- uses: actions/setup-node@v4
110110

111-
- run: npm install
111+
- run: npm install --ignore-scripts
112112

113113
- run: npm update
114114

0 commit comments

Comments
 (0)