File tree 1 file changed +13
-9
lines changed
1 file changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -10,36 +10,40 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
env :
12
12
FOLDER_NAME : " "
13
+
13
14
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
+
16
20
# Get changed files from the PR
17
21
- name : Get changed files
18
22
id : changed_files
19
23
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
21
26
echo "::set-output name=changed_files::$(cat changed_files.txt)"
22
-
27
+
23
28
# Extract and process changed folders
24
29
- name : Extract changed folders
25
30
id : extract_folders
26
31
run : |
27
32
# Extract unique folder names
28
33
changed_folders=$(awk -F/ '{print $2}' changed_files.txt | sort -u)
29
34
echo "::set-output name=changed_folders::$changed_folders"
30
-
35
+
31
36
- 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 }}"
34
38
35
- # Loop through changed folders
39
+ # Loop through changed folders and run commands
36
40
- name : Run commands in each folder
37
41
run : |
38
42
for folder in ${{ steps.extract_folders.outputs.changed_folders }}; do
39
43
cd adapters/$folder
40
44
npm install
41
45
npm run compile
42
- cd ../../
46
+ cd ../..
43
47
npm install
44
48
npm run start $folder
45
49
done
You can’t perform that action at this time.
0 commit comments