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 }}
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
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