Skip to content

Commit f8e1317

Browse files
committed
move package count script
1 parent 8eb76b3 commit f8e1317

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/benchmark.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ jobs:
5858
5959
- name: Configuration
6060
run: |
61-
store=find . -path "*package.json" -not -path "./package.json" -type f | wc -l | xargs > ../count/npm
6261
echo "COREPACK_ENABLE_STRICT: ${{ env.COREPACK_ENABLE_STRICT }}"
6362
echo "COREPACK_ENABLE_AUTO_PIN: ${{ env.COREPACK_ENABLE_AUTO_PIN }}"
6463
echo "YARN_ENABLE_IMMUTABLE_INSTALLS: ${{ env.YARN_ENABLE_IMMUTABLE_INSTALLS }}"

scripts/package-count.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/bash
2+
3+
find . -path "*package.json" -not -path "./package.json" -type f | wc -l | xargs

0 commit comments

Comments
 (0)