Skip to content

Commit f25d37b

Browse files
committed
fix: version references
1 parent 0146147 commit f25d37b

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/benchmark.yaml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,16 @@ jobs:
5353
PNPM_VERSION="$(corepack pnpm@latest -v)"
5454
BUN_VERSION="$(bun -v)"
5555
DENO_VERSION="$(echo "${$(deno -v)/deno/}" | xargs)"
56-
ALL="npm: $NPM_VERSION \n
57-
vlt: $VLT_VERSION \n
58-
yarn: $YARN_VERSION \n
59-
berry: $BERRY_VERSION \n
60-
pnpm: $PNPM_VERSION \n
61-
bun: $BUN_VERSION \n
62-
deno: $DENO_VERSION"
63-
echo $ALL
64-
echo $ALL > ./results/versions
56+
57+
echo "npm: $NPM_VERSION"
58+
echo "vlt: $VLT_VERSION"
59+
echo "yarn: $YARN_VERSION"
60+
echo "berry: $BERRY_VERSION"
61+
echo "pnpm: $PNPM_VERSION"
62+
echo "bun: $BUN_VERSION"
63+
echo "deno: $DENO_VERSION"
64+
65+
echo "{ npm: \"$NPM_VERSION\", vlt: \"$VLT_VERSION\", yarn: \"$YARN_VERSION\", berry: \"$BERRY_VERSION\", pnpm: \"$PNPM_VERSION\", bun: \"$BUN_VERSION\", deno: \"$DENO_VERSION\" }" > ./results/versions.json
6566
6667
# Log Benchmark Configurations
6768
echo "COREPACK_ENABLE_STRICT: ${{ env.COREPACK_ENABLE_STRICT }}"

0 commit comments

Comments
 (0)