Skip to content

Commit b760b83

Browse files
committed
Only apps should have lockfiles
1 parent 458498a commit b760b83

File tree

4 files changed

+6
-15693
lines changed

4 files changed

+6
-15693
lines changed

.github/workflows/test.yml

-6
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v4
2020
- uses: ljharb/actions/node/install@32a09e8b5346216e84d4cdf4769c70af9903b536
21-
with:
22-
use-npm-ci: true
2321
- name: Flow type check
2422
run: npm run flow
2523

@@ -29,8 +27,6 @@ jobs:
2927
steps:
3028
- uses: actions/checkout@v4
3129
- uses: ljharb/actions/node/install@32a09e8b5346216e84d4cdf4769c70af9903b536
32-
with:
33-
use-npm-ci: true
3430
- name: Run ESLint
3531
run: npm run lint
3632

@@ -40,8 +36,6 @@ jobs:
4036
steps:
4137
- uses: actions/checkout@v4
4238
- uses: ljharb/actions/node/install@32a09e8b5346216e84d4cdf4769c70af9903b536
43-
with:
44-
use-npm-ci: true
4539
- name: Run diff check for the breakUpAriaJSON script
4640
run: node scripts/buildModelModules.js && git diff --exit-code -- src
4741

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,8 @@ docs/
55
.nyc_output/
66
coverage/
77
__tests-built__/
8+
9+
# Only apps should have lockfiles
10+
npm-shrinkwrap.json
11+
package-lock.json
12+
yarn.lock

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

0 commit comments

Comments
 (0)