Skip to content

Commit 0843860

Browse files
authored
Merge pull request #627 from neo4j/add-package-lock
Commits package-lock.json file
2 parents 3f2153f + 8737d80 commit 0843860

File tree

8 files changed

+9469
-10
lines changed

8 files changed

+9469
-10
lines changed

.github/workflows/docs.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@ jobs:
3434
node-version: lts/*
3535
- name: Install Dependencies
3636
run: |
37-
npm install
38-
cd docs && npm install
37+
npm ci
38+
cd docs
39+
npm ci
3940
- name: Setup Pages
4041
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5
4142
- name: Build Docs

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
1717
with:
1818
node-version: lts/*
19-
- run: npm install
19+
- run: npm ci
2020
- run: npm run lint
2121

2222
license-header-check:
@@ -41,6 +41,6 @@ jobs:
4141
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
4242
with:
4343
node-version: lts/*
44-
- run: npm install
44+
- run: npm ci
4545
- name: "Run Prettier"
4646
run: npm run prettier

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
run: npm install -g npm@latest
4242

4343
- name: Install Dependencies
44-
run: npm install
44+
run: npm ci
4545

4646
- name: Configure git
4747
run: |

.github/workflows/sonarcloud.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
2020
with:
2121
node-version: lts/*
22-
- run: npm install
22+
- run: npm ci
2323
- name: "Download artifact"
2424
uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8
2525
with:

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
2121
with:
2222
node-version: ${{ matrix.node-version }}
23-
- run: npm install
23+
- run: npm ci
2424
- run: npm run build --if-present
2525
- run: npm test
2626

@@ -33,7 +33,7 @@ jobs:
3333
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6
3434
with:
3535
node-version: lts/*
36-
- run: npm install
36+
- run: npm ci
3737
- run: npm run build --if-present
3838
- run: npm test -- --coverage
3939
- name: Upload code coverage
@@ -56,7 +56,7 @@ jobs:
5656

5757
- name: Install dependencies
5858
run: |
59-
npm install
59+
npm ci
6060
npm install -g tsx
6161
- run: npm run build
6262
- name: Run Examples

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ tmp/
7474
# Oclif generated file
7575
oclif.manifest.json
7676

77-
package-lock.json
7877
yarn.lock
7978

8079
.yarn/

0 commit comments

Comments
 (0)