File tree Expand file tree Collapse file tree
GeoPrivacy/.github/workflows Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212 steps :
1313 - uses : actions/checkout@v4
1414
15+ - name : List GeoPrivacy/frontend directory content
16+ run : |
17+ echo "Listing GeoPrivacy/frontend:"
18+ ls -la GeoPrivacy/frontend || echo "GeoPrivacy/frontend directory not found or ls failed"
19+
1520 - name : Setup Node.js for Frontend
1621 uses : actions/setup-node@v4
1722 with :
2328 working-directory : ./GeoPrivacy/frontend
2429 run : npm ci
2530
31+ - name : Display package.json content from GeoPrivacy/frontend
32+ working-directory : ./GeoPrivacy/frontend
33+ run : |
34+ echo "--- Content of GeoPrivacy/frontend/package.json (from Action runner) ---"
35+ cat package.json || echo "Failed to cat package.json"
36+ echo "---------------------------------------------------------------------"
37+
38+ - name : List available npm scripts in GeoPrivacy/frontend
39+ working-directory : ./GeoPrivacy/frontend
40+ run : npm run || echo "npm run command failed"
41+
2642 - name : Lint Frontend Code
2743 working-directory : ./GeoPrivacy/frontend
2844 run : npm run lint
You can’t perform that action at this time.
0 commit comments