diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5f37b65..ec56758 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,16 +9,25 @@ jobs: node-version: - 20.x os: - - windows-latest + #- windows-latest - ubuntu-latest - - macos-latest + #- macos-latest + - ubuntu-24.04-ppc64le + - ubuntu-24.04-s390x + include: + - os: ubuntu-24.04-ppc64le + arch: ppc64le + - os: ubuntu-24.04-s390x + arch: s390x + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} + architecture: ${{ matrix.arch }} - name: Install dependencies if: ${{ startsWith(matrix.os, 'ubuntu') }} run: sudo apt install -y unixodbc-dev