1 parent 9b447c3 commit fbe080dCopy full SHA for fbe080d
1 file changed
.github/workflows/build.yml
@@ -20,12 +20,18 @@ jobs:
20
21
smoke-test:
22
runs-on: ubuntu-24.04
23
+ strategy:
24
+ matrix:
25
+ node-version: [24, 25]
26
+ bun-version: [1.2.23, 1.3.10]
27
steps:
28
- uses: actions/checkout@v6.0.2
29
- uses: oven-sh/setup-bun@v2.1.3
30
with:
- bun-version: 1.3.10
31
+ bun-version: ${{ matrix.bun-version }}
32
- uses: actions/setup-node@v6
33
+ with:
34
+ node-version: ${{ matrix.node-version }}
35
- run: bun install --frozen-lockfile
36
- run: bun run build:linux-amd64
37
- run: bin/linux-amd64/gitlab-ci-local --version
0 commit comments