Skip to content

Commit f15f664

Browse files
committed
Pin dependencies
1 parent 4b7dd86 commit f15f664

File tree

40 files changed

+3806
-55
lines changed

40 files changed

+3806
-55
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ on:
1717
pull_request:
1818
# The branches below must be a subset of the branches above
1919
branches: ["main"]
20-
schedule:
21-
- cron: "0 0 * * 1"
2220

2321
permissions:
2422
contents: read
@@ -71,7 +69,7 @@ jobs:
7169
- name: Build cpp
7270
if: matrix.language == 'cpp'
7371
run: |
74-
npm install -g cmake-js@6.3.2 && npm install && npm test
72+
npm install --ignore-scripts && npm test
7573
7674
# ℹ️ Command-line programs to run using the OS shell.
7775
# 📚 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 install --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 & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ name: Node.js CI
33
on:
44
push:
55
pull_request:
6-
schedule:
7-
- cron: "0 0 * * *"
86

97
permissions:
108
contents: read
@@ -29,8 +27,7 @@ jobs:
2927
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
3028
with:
3129
node-version: ${{ matrix.node-version }}
32-
- run: npm install -g cmake-js@6.3.2
33-
- run: npm install
30+
- run: npm install --ignore-scripts
3431
- name: Environment Information
3532
run: npx envinfo
3633
- name: Run Test
@@ -50,8 +47,7 @@ jobs:
5047
- run: node -p process.versions
5148
- name: Environment Information
5249
run: npx envinfo
53-
- run: npm install -g cmake-js@6.3.2
54-
- run: npm install
50+
- run: npm install --ignore-scripts
5551
- name: Environment Information
5652
run: npx envinfo
5753
- 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)