Skip to content

Commit d6b18ef

Browse files
committed
Only apps should have lockfiles
1 parent 7950459 commit d6b18ef

File tree

4 files changed

+6
-13218
lines changed

4 files changed

+6
-13218
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: npx 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/breakUpAriaJSON.js && git diff --exit-code -- src
4741

.gitignore

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

.npmrc

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

0 commit comments

Comments
 (0)