Skip to content

Commit

Permalink
👩‍💻 dx(ci:build): Use strategy matrix and explicit arch.
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Mar 24, 2024
1 parent 1b41dd9 commit a856153
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/ci:build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,15 @@ jobs:

build:
name: Continuous integration (build)
runs-on: ubuntu-latest
strategy:
matrix:
platform:
- ubuntu-latest
architecture:
- os.linux.x86_64

runs-on: ${{ matrix.platform }}

timeout-minutes: 15
steps:
- name: Checkout 🛎️
Expand All @@ -30,4 +38,4 @@ jobs:
key: build

- name: Build 🏗️
run: meteor npm run build -- ../dist
run: meteor npm run build -- ../dist --architecture ${{ matrix.architecture }}

0 comments on commit a856153

Please sign in to comment.