feat: migrate WeTTY server to Rust (axum + tower + socketioxide) with napi-rs Node.js bridge #198
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: Pull Request | |
| on: | |
| pull_request: | |
| permissions: {} | |
| jobs: | |
| commitlint: | |
| name: Lint Commits | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| with: | |
| fetch-depth: 0 | |
| persist-credentials: false | |
| - name: Set up mise (Node, pnpm) | |
| uses: jdx/mise-action@v2 | |
| with: | |
| install: true | |
| cache: true | |
| - run: pnpm install --frozen-lockfile | |
| - name: Validate PR commits | |
| run: pnpm exec commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose | |
| test: | |
| name: Build & Test | |
| uses: ./.github/workflows/build-and-test.workflow.yml | |
| permissions: | |
| contents: read | |
| validate-docker: | |
| name: Validate Docker Build | |
| uses: ./.github/workflows/docker.workflow.yml | |
| permissions: | |
| contents: read | |
| packages: write | |
| strategy: | |
| matrix: | |
| platform: | |
| - linux/amd64 | |
| - linux/arm/v6 | |
| - linux/arm/v7 | |
| - linux/arm64 | |
| with: | |
| platforms: ${{ matrix.platform }} | |
| push: false |