Refactor FFmpegRecorder #401
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: Test for the server/ directory | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| workflow_dispatch: | |
| jobs: | |
| build-headful: | |
| uses: ./.github/workflows/chromium-headful-image.yaml | |
| secrets: inherit | |
| build-headless: | |
| uses: ./.github/workflows/chromium-headless-image.yaml | |
| secrets: inherit | |
| test: | |
| runs-on: ubuntu-latest | |
| needs: [build-headful, build-headless] | |
| permissions: | |
| contents: read | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Chrome | |
| uses: browser-actions/setup-chrome@v2 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| - name: Set up pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 10 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: "server/go.mod" | |
| cache: true | |
| - name: Compute short SHA for images | |
| id: vars | |
| shell: bash | |
| run: echo "short_sha=${GITHUB_SHA::7}" >> "$GITHUB_OUTPUT" | |
| - name: Login to Docker Hub | |
| uses: docker/login-action@v3 | |
| with: | |
| username: ${{ vars.DOCKERHUB_USERNAME }} | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - name: Run server Makefile tests | |
| run: make test | |
| working-directory: server | |
| env: | |
| # Prefer explicit images if passed from the caller; otherwise use the commit short sha | |
| E2E_IMAGE_TAG: ${{ steps.vars.outputs.short_sha }} |