Skip to content

Commit 7dc783a

Browse files
committed
fix
1 parent a950945 commit 7dc783a

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/unit-test.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
# Test plugins dynamically
2525
test-plugins:
2626
runs-on: ubuntu-latest
27-
needs: install-dependencies # Ensures this job runs after dependencies are installed
27+
needs: install-dependencies # Ensures this job runs after dependencies are installed
2828
strategy:
2929
matrix:
30-
plugin:
30+
plugin:
3131
- contentstack-audit
3232
- contentstack-export-to-csv
3333

@@ -39,11 +39,16 @@ jobs:
3939
uses: actions/setup-node@v4
4040
with:
4141
node-version: '22'
42+
43+
- name: Check contents of plugin directory
44+
run: |
45+
cd packages/${{ matrix.plugin }}
46+
ls -la
4247
4348
- name: Install dependencies for the plugin
4449
run: |
4550
cd packages/${{ matrix.plugin }}
46-
npm install
51+
ls -la
4752
4853
- name: Run tests for the plugin
4954
run: |

0 commit comments

Comments
 (0)