diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 464fab76..638ede52 100755 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,10 +9,12 @@ on: jobs: build: - runs-on: ubuntu-24.04 strategy: matrix: node: [20.x, 22.x, 23.x] + arch: [amd64, arm64] + runs-on: ubuntu-24.04${{ matrix.arch == 'arm64' && '-arm' || '' }} + steps: - uses: actions/checkout@v4