[READ-ONLY] Mirror of https://github.com/bombshell-dev/tty. Platform independent 2D layout engine for terminal applications based on Clay
5

Configure Feed

Select the types of activity you want to include in your feed.

os matrix test in ci (#36)

authored by

Jacob Bolda and committed by
GitHub
(May 23, 2026, 8:55 AM -0500) 427deb49 d5e173d2

+38
+38
.github/workflows/verify.yaml
··· 33 33 - name: build wasm 34 34 run: make 35 35 36 + - name: upload wasm artifact 37 + uses: actions/upload-artifact@v7 38 + with: 39 + name: clayterm-wasm 40 + path: | 41 + clayterm.wasm 42 + wasm.ts 43 + 44 + test-alt-os: 45 + needs: test 46 + strategy: 47 + matrix: 48 + os: 49 + - name: macos 50 + value: macos-latest 51 + - name: windows 52 + value: windows-latest 53 + fail-fast: false 54 + runs-on: ${{ matrix.os.value }} 55 + name: test ${{ matrix.os.name }} 56 + 57 + steps: 58 + - name: checkout 59 + uses: actions/checkout@v4 60 + with: 61 + submodules: true 62 + 63 + - name: setup deno 64 + uses: denoland/setup-deno@v2 65 + with: 66 + deno-version: v2.x 67 + 68 + - name: download wasm artifact 69 + uses: actions/download-artifact@v4 70 + with: 71 + name: clayterm-wasm 72 + path: . 73 + 36 74 - name: test 37 75 run: deno task test 38 76