Skip to content

Commit

Permalink
Git workflow for running jest test (Review comments)
Browse files Browse the repository at this point in the history
Signed-off-by: Zoltan Magyari <[email protected]>
  • Loading branch information
Zoltan Magyari committed Sep 27, 2024
1 parent 9fd6319 commit 9af9c96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/branch-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
- name: Check uncovered files
run: |
# Step 1: Get the list of changed JS, TS, JSX and TSX files in the src directory
CHANGED_FILES=$(git diff --name-only origin/main...HEAD | grep '^src/.*\.[jt]sx\?$' | grep -v '\ .test\.')
CHANGED_FILES=$(git diff --name-only origin/main...HEAD | grep '^src/.*\.[jt]sx\?$')
# Initialize an empty array to hold files without tests
MISSING_TEST_FILES=()
Expand Down

0 comments on commit 9af9c96

Please sign in to comment.