Skip to content

Commit 7089fcf

Browse files
remove package-lock.json (#13)
1 parent 05fd3c4 commit 7089fcf

File tree

6 files changed

+8
-10269
lines changed

6 files changed

+8
-10269
lines changed

.github/workflows/format-check.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
uses: actions/setup-node@v6
2020
with:
2121
node-version: 24
22-
cache: 'npm'
22+
package-manager-cache: false
2323

2424
- name: Install dependencies
25-
run: npm ci
25+
run: npm install
2626

2727
- name: Run format check
2828
run: npm run format:check

.github/workflows/integration-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535
uses: actions/setup-node@v6
3636
with:
3737
node-version: ${{ matrix.node-version }}
38-
cache: 'npm'
38+
package-manager-cache: false
3939

4040
- name: Install dependencies
41-
run: npm ci
41+
run: npm install
4242

4343
- name: Build
4444
run: npm run build || true # we currently have type errors so just ignore that

.github/workflows/unit-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ jobs:
3535
uses: actions/setup-node@v6
3636
with:
3737
node-version: ${{ matrix.node-version }}
38-
cache: 'npm'
38+
package-manager-cache: false
3939

4040
- name: Install dependencies
41-
run: npm ci
41+
run: npm install
4242

4343
- name: Build
4444
run: npm run build || true # we currently have type errors so just ignore that

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
# Dependencies
1212
node_modules/
13+
package-lock.json
1314

1415
# Test Outputs
1516
coverage

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

0 commit comments

Comments
 (0)