Skip to content

Commit 6075e33

Browse files
committed
chore: remove lockfile + prevent creation
1 parent 763decb commit 6075e33

5 files changed

Lines changed: 16 additions & 10832 deletions

File tree

.github/workflows/checks.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
with:
2525
node-version: ${{ matrix.node }}
2626
cache: "npm"
27+
cache-dependency-path: ${{ hashFiles('**/package.json') }}
2728

2829
- name: Install dependencies
2930
run: |
@@ -53,6 +54,7 @@ jobs:
5354
with:
5455
node-version: ${{ matrix.node }}
5556
cache: "npm"
57+
cache-dependency-path: ${{ hashFiles('**/package.json') }}
5658

5759
- name: Install dependencies
5860
run: |
@@ -83,6 +85,7 @@ jobs:
8385
with:
8486
node-version: ${{ matrix.node }}
8587
cache: "npm"
88+
cache-dependency-path: ${{ hashFiles('**/package.json') }}
8689

8790
- name: Install dependencies
8891
run: |
@@ -126,6 +129,7 @@ jobs:
126129
with:
127130
node-version: ${{ matrix.node }}
128131
cache: "npm"
132+
cache-dependency-path: ${{ hashFiles('**/package.json') }}
129133

130134
- name: Install dependencies
131135
run: |
@@ -177,6 +181,7 @@ jobs:
177181
with:
178182
node-version: ${{ matrix.node }}
179183
cache: "npm"
184+
cache-dependency-path: ${{ hashFiles('**/package.json') }}
180185

181186
- name: Install dependencies
182187
run: |

.github/workflows/create-release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616

17-
- name: Node.js 18
18-
uses: actions/setup-node@v4.0.3
17+
- name: Node.js 20
18+
uses: actions/setup-node@v4
1919
with:
20-
node-version: 18
20+
node-version: 20
2121
cache: "npm"
22+
cache-dependency-path: ${{ hashFiles('**/package.json') }}
2223

2324
- name: Create release
2425
run: |

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,14 @@ node_modules
1414
# NPM / Yarn
1515
*-debug.log
1616
*-error.log
17-
yarn.lock
1817
npm-shrinkwrap.json
1918

19+
# Package lock files (see https://github.com/sindresorhus/ama/issues/479#issuecomment-310661514)
20+
bun.lockb
21+
package-lock.json
22+
pnpm-lock.yaml
23+
yarn.lock
24+
2025
# node-clinic
2126
.clinic
2227

.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)