From bc40166463d4aa441ea52ada8f91725a02d91069 Mon Sep 17 00:00:00 2001 From: Alex Date: Sun, 8 Dec 2024 23:15:10 -0600 Subject: [PATCH] ci: run pr checks on mac --- .github/workflows/pr.yaml | 44 +++++------------------ .github/workflows/reusable-pr.yaml | 58 ++++++++++++++++++++++++++++++ 2 files changed, 66 insertions(+), 36 deletions(-) create mode 100644 .github/workflows/reusable-pr.yaml diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index cebbcd5..3bf1bc6 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -7,40 +7,12 @@ on: workflow_dispatch: -concurrency: - group: pr-${{ github.head_ref || github.run_id }} - cancel-in-progress: true - -env: - TILT_VERSION: '0.33.21' - jobs: - tests: - name: Tests - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - name: Setup Tilt - uses: yokawasa/action-setup-kube-tools@v0.11.2 - with: - setup-tools: | - tilt - tilt: ${{ env.TILT_VERSION }} - - - name: Setup pnpm - uses: pnpm/action-setup@v4 - - - uses: actions/setup-node@v4 - with: - node-version-file: .nvmrc - cache: pnpm - - - name: Run npm install - run: pnpm install --frozen-lockfile - - - name: Eslint - run: pnpm run lint - - - name: Run Tests - run: pnpm run tilt:ci + checks-ubuntu: + uses: ./.github/workflows/reusable-pr.yaml + with: + runner: ubuntu-latest + checks-macos: + uses: ./.github/workflows/reusable-pr.yaml + with: + runner: macos-latest diff --git a/.github/workflows/reusable-pr.yaml b/.github/workflows/reusable-pr.yaml new file mode 100644 index 0000000..adcf875 --- /dev/null +++ b/.github/workflows/reusable-pr.yaml @@ -0,0 +1,58 @@ +name: checks + +on: + workflow_call: + inputs: + runner: + required: true + type: string + +concurrency: + group: pr-${{ inputs.runner }}-${{ github.head_ref || github.run_id }} + cancel-in-progress: true + +env: + TILT_VERSION: '0.33.21' + +jobs: + tests: + name: Tests + runs-on: ${{ inputs.runner }} + steps: + - uses: actions/checkout@v4 + + - name: Setup Tilt + if: ${{ inputs.runner == 'ubuntu-latest' }} + uses: yokawasa/action-setup-kube-tools@v0.11.2 + with: + setup-tools: | + tilt + tilt: ${{ env.TILT_VERSION }} + + - name: Set up Homebrew + if: ${{ inputs.runner == 'macos-latest' }} + uses: Homebrew/actions/setup-homebrew@master + + - name: Install Tilt + if: ${{ inputs.runner == 'macos-latest' }} + run: | + brew install docker colima tilt + brew services start colima + docker run hello-world + + - name: Setup pnpm + uses: pnpm/action-setup@v4 + + - uses: actions/setup-node@v4 + with: + node-version-file: .nvmrc + cache: pnpm + + - name: Run npm install + run: pnpm install --frozen-lockfile + + - name: Eslint + run: pnpm run lint + + - name: Run Tests + run: DOCKER_HOST="$(docker context inspect colima -f '{{ .Endpoints.docker.Host }}')" pnpm run tilt:ci