Skip to content

Commit 3002a0c

Browse files
committed
fix git diff
1 parent 3b8463d commit 3002a0c

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

.github/workflows/test.yml

+13-9
Original file line numberDiff line numberDiff line change
@@ -10,36 +10,40 @@ jobs:
1010
runs-on: ubuntu-latest
1111
env:
1212
FOLDER_NAME: ""
13+
1314
steps:
14-
- uses: actions/checkout@v2
15-
15+
- name: Checkout repository
16+
uses: actions/checkout@v2
17+
with:
18+
ref: main # Checkout the main branch
19+
1620
# Get changed files from the PR
1721
- name: Get changed files
1822
id: changed_files
1923
run: |
20-
git diff --name-only ${{ github.event.before }} ${{ github.event.after }} > changed_files.txt
24+
git fetch origin ${{ github.base_ref }}:refs/remotes/origin/${{ github.base_ref }}
25+
git diff --name-only origin/${{ github.base_ref }} ${{ github.head_ref }} > changed_files.txt
2126
echo "::set-output name=changed_files::$(cat changed_files.txt)"
22-
27+
2328
# Extract and process changed folders
2429
- name: Extract changed folders
2530
id: extract_folders
2631
run: |
2732
# Extract unique folder names
2833
changed_folders=$(awk -F/ '{print $2}' changed_files.txt | sort -u)
2934
echo "::set-output name=changed_folders::$changed_folders"
30-
35+
3136
- name: Print changed folders
32-
run: |
33-
echo "Changed folders: ${{ steps.extract_folders.outputs.changed_folders }}"
37+
run: echo "Changed folders: ${{ steps.extract_folders.outputs.changed_folders }}"
3438

35-
# Loop through changed folders
39+
# Loop through changed folders and run commands
3640
- name: Run commands in each folder
3741
run: |
3842
for folder in ${{ steps.extract_folders.outputs.changed_folders }}; do
3943
cd adapters/$folder
4044
npm install
4145
npm run compile
42-
cd ../../
46+
cd ../..
4347
npm install
4448
npm run start $folder
4549
done

0 commit comments

Comments
 (0)