Skip to content

Commit fbe080d

Browse files
authored
ci: add Node.js and Bun version matrix to smoke test (#1797)
1 parent 9b447c3 commit fbe080d

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,18 @@ jobs:
2020

2121
smoke-test:
2222
runs-on: ubuntu-24.04
23+
strategy:
24+
matrix:
25+
node-version: [24, 25]
26+
bun-version: [1.2.23, 1.3.10]
2327
steps:
2428
- uses: actions/checkout@v6.0.2
2529
- uses: oven-sh/setup-bun@v2.1.3
2630
with:
27-
bun-version: 1.3.10
31+
bun-version: ${{ matrix.bun-version }}
2832
- uses: actions/setup-node@v6
33+
with:
34+
node-version: ${{ matrix.node-version }}
2935
- run: bun install --frozen-lockfile
3036
- run: bun run build:linux-amd64
3137
- run: bin/linux-amd64/gitlab-ci-local --version

0 commit comments

Comments
 (0)