Skip to content

Commit

Permalink
chore: only run build in changed dirs (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
straker authored Jan 10, 2024
1 parent 62d9b93 commit 2798b66
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/update-generated-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
git checkout -b $BRANCH_NAME
git commit -m "chore: sync generated files"
git push origin $BRANCH_NAME
gh pr create --base main --head $BRANCH_NAME --title "chore: sync generated files" --body ""
gh pr create --base main --head $BRANCH_NAME --title "chore: sync generated files" --body "This PR was opened by a robot :robot: :tada:."
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
26 changes: 25 additions & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,6 +1,30 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npm run build -ws
# only run the npm build script for each workspace directory that has changed files
function run_build {
# convert multiline string into array
# @see https://stackoverflow.com/questions/24628076/convert-multiline-string-to-array
local IFS=$'\n'
local lines=($1)
local i

# get only the unique values from an array
# `lines[$i]%%/*` gets the substring up to the first '/'. so `semantic-pr-footer-v1/src/run.ts` becomes `semantic-pr-footer-v1`
# @see https://www.baeldung.com/linux/bash-unique-values-arrays
unique_dirs=($(for (( i=0; i<${#lines[@]}; i++ )) ; do echo "${lines[$i]%%/*}"; done | sort -u))

for dir in "${unique_dirs[@]}"; do
npm run build -w "$dir"
done
}

cd ./.github/actions
files=$(git diff HEAD~1 --name-only --relative)
if [ "$files" != "" ]; then
run_build "$files"
fi

cd ../../
git add .
npx lint-staged

0 comments on commit 2798b66

Please sign in to comment.