fix: remove zero-width space marker that truncates first character (#71) #97
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: [master] | |
| jobs: | |
| quality: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run CI scripts | |
| run: npm run ci | |
| tmux-runtime-validation: | |
| runs-on: ubuntu-latest | |
| needs: quality | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Ensure tmux available | |
| run: | | |
| if ! command -v tmux >/dev/null 2>&1; then | |
| sudo apt-get update | |
| sudo apt-get install -y tmux | |
| fi | |
| - name: Run tmux runtime verification | |
| run: bash scripts/verify-tmux-runtime.sh "artifacts/tmux-runtime/${{ github.run_id }}-${{ github.run_attempt }}" | |
| - name: Upload tmux runtime artifacts | |
| if: always() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: tmux-runtime-${{ github.run_id }}-${{ github.run_attempt }} | |
| path: artifacts/tmux-runtime/ | |
| if-no-files-found: warn |