Merge pull request #33 from whitelonng/codex/release-0.6.0 #154
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Windows compatibility gate | |
| on: | |
| push: | |
| pull_request: | |
| jobs: | |
| windows-shells: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run build | |
| - name: CMD | |
| shell: cmd | |
| run: npm run test:windows-smoke | |
| - name: PowerShell | |
| shell: powershell | |
| run: npm run test:windows-smoke | |
| - name: Git Bash | |
| shell: bash | |
| run: npm run test:windows-smoke |