Skip to content

Commit c1ce502

Browse files
committed
update formatting
1 parent 9c0f043 commit c1ce502

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/development-cleanup.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,4 +84,4 @@ jobs:
8484
echo "Updated existing preview comment"
8585
else
8686
echo "No preview comment found to update"
87-
fi
87+
fi

.github/workflows/development.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -224,22 +224,22 @@ jobs:
224224
run: |
225225
# Get the base branch
226226
BASE_BRANCH=${{ github.event.pull_request.base.ref }}
227-
227+
228228
# Get list of changed files
229229
CHANGED_FILES=$(git diff --name-only origin/$BASE_BRANCH...HEAD)
230-
230+
231231
# Define the files we care about in root
232232
ROOT_FILES="package.json package-lock.json jest.config.cjs jest.setup.ts eslint.config.js cypress.config.ts .prettierrc .prettierignore tsconfig.json tsconfig.base.json tsconfig.test.json tsconfig.cypress.json"
233-
233+
234234
# Check if src/ui directory changed or any of the root files changed
235235
SHOULD_BUILD=false
236-
236+
237237
# Check if any file in src/ui changed
238238
if echo "$CHANGED_FILES" | grep -q -E "^(src/ui|tests/ui)/"; then
239239
echo "UI source files changed"
240240
SHOULD_BUILD=true
241241
fi
242-
242+
243243
# Check if any of the root configuration files changed
244244
for file in $ROOT_FILES; do
245245
if echo "$CHANGED_FILES" | grep -q "^${file}$"; then
@@ -248,7 +248,7 @@ jobs:
248248
break
249249
fi
250250
done
251-
251+
252252
echo "should_build=$SHOULD_BUILD" >> $GITHUB_OUTPUT
253253
echo "Should build: $SHOULD_BUILD"
254254
@@ -321,4 +321,4 @@ jobs:
321321
322322
- name: Skip build notification
323323
if: steps.check-changes.outputs.should_build == 'false'
324-
run: echo "Skipping UI preview build - no relevant files changed"
324+
run: echo "Skipping UI preview build - no relevant files changed"

0 commit comments

Comments
 (0)