File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed
Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff 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 : |
You can’t perform that action at this time.
0 commit comments