Skip to content

Commit 62f7a94

Browse files
committed
fix: Add shell: bash to Windows-incompatible commands
The 'ls -lah' and 'chmod +x' commands in verify/test steps were failing on Windows PowerShell. Added 'shell: bash' to both steps to ensure cross-platform compatibility.
1 parent 10bbece commit 62f7a94

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

.github/workflows/agentic-synth-ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ jobs:
9696

9797
- name: Verify build artifacts
9898
working-directory: ${{ env.PACKAGE_PATH }}
99+
shell: bash
99100
run: |
100101
ls -lah dist/
101102
test -f dist/index.js || (echo "ESM build missing" && exit 1)
@@ -105,6 +106,7 @@ jobs:
105106
106107
- name: Test CLI executable
107108
working-directory: ${{ env.PACKAGE_PATH }}
109+
shell: bash
108110
run: |
109111
chmod +x bin/cli.js
110112
./bin/cli.js --help

0 commit comments

Comments
 (0)