Skip to content

Commit

Permalink
do nothing in the middle
Browse files Browse the repository at this point in the history
  • Loading branch information
bahmutov committed Feb 15, 2024
1 parent 3345b68 commit 1a3fa43
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/example-performance.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
with:
working-directory: examples/basic
install-command: 'npm install chalk'
cache-key-prefix: chalk1
cache-key-prefix: chalk2
env:
ACTIONS_STEP_DEBUG: true
14 changes: 7 additions & 7 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -306,13 +306,13 @@ const npmInstallAction = async () => {

for (const workingDirectory of workingDirectories) {
const started = +new Date()
await api.utils.installInOneFolder({
usePackageLock,
useRollingCache,
workingDirectory,
installCommand,
cachePrefix
})
// await api.utils.installInOneFolder({
// usePackageLock,
// useRollingCache,
// workingDirectory,
// installCommand,
// cachePrefix
// })
const finished = +new Date()
core.debug(`installing in ${workingDirectory} took ${finished - started}ms`)
}
Expand Down
14 changes: 7 additions & 7 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -299,13 +299,13 @@ const npmInstallAction = async () => {

for (const workingDirectory of workingDirectories) {
const started = +new Date()
await api.utils.installInOneFolder({
usePackageLock,
useRollingCache,
workingDirectory,
installCommand,
cachePrefix
})
// await api.utils.installInOneFolder({
// usePackageLock,
// useRollingCache,
// workingDirectory,
// installCommand,
// cachePrefix
// })
const finished = +new Date()
core.debug(`installing in ${workingDirectory} took ${finished - started}ms`)
}
Expand Down

0 comments on commit 1a3fa43

Please sign in to comment.