Skip to content

Commit

Permalink
Create arch.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
niallthomson authored Mar 6, 2025
1 parent 595540d commit e574208
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/arch.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Arch Test

on:
workflow_dispatch:

permissions: {}

jobs:
docker:
name: Docker E2E Tests
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-22.04
arch: amd64
- os: ubuntu-22.04-arm
arch: arm64
steps:
- uses: actions/checkout@v4
- name: "Setup Env"
uses: ./.github/actions/setup-env
- name: Compose up
shell: devenv shell bash -- -e {0}
run: |
yarn nx compose:up ui
sleep 60
- name: Test
shell: devenv shell bash -- -e {0}
run: |
CYPRESS_BASE_URL='http://localhost:8888' yarn nx execute e2e
- name: Compose down
shell: devenv shell bash -- -e {0}
run: |
yarn nx compose:down ui

0 comments on commit e574208

Please sign in to comment.