Skip to content

Commit bfb184f

Browse files
authored
Pin dependencies (#621)
1 parent fa3cd35 commit bfb184f

File tree

42 files changed

+3090
-52
lines changed

Some content is hidden

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

42 files changed

+3090
-52
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
- name: Build cpp
7272
if: matrix.language == 'cpp'
7373
run: |
74-
npm install -g cmake-js@6.3.2 && npm install && npm test
74+
npm ci --ignore-scripts && npm test
7575
7676
# ℹ️ Command-line programs to run using the OS shell.
7777
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun

.github/workflows/linter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
egress-policy: audit
1616

1717
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
18-
- run: npm install
18+
- run: npm ci --ignore-scripts
1919
- name: check clang-format
2020
run: |
2121
git config clangFormat.binary node_modules/.bin/clang-format

.github/workflows/nodejs.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ jobs:
2929
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
3030
with:
3131
node-version: ${{ matrix.node-version }}
32-
- run: npm install -g cmake-js@6.3.2
33-
- run: npm install
32+
- run: npm ci --ignore-scripts
3433
- name: Environment Information
3534
run: npx envinfo
3635
- name: Run Test
@@ -50,8 +49,7 @@ jobs:
5049
- run: node -p process.versions
5150
- name: Environment Information
5251
run: npx envinfo
53-
- run: npm install -g cmake-js@6.3.2
54-
- run: npm install
52+
- run: npm ci --ignore-scripts
5553
- name: Environment Information
5654
run: npx envinfo
5755
- name: Run Test

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ Debug/
44
Release/
55
*.lock
66
*.log
7-
package-lock.json
87
npm-debug.log*
98

109
.idea/

0 commit comments

Comments
 (0)