Skip to content

Commit 50b5354

Browse files
authored
add matrix strategy to debugger ci job (#5450)
1 parent 0ceef34 commit 50b5354

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

.github/workflows/debugger.yml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -15,25 +15,21 @@ concurrency:
1515

1616
jobs:
1717
ubuntu:
18+
strategy:
19+
matrix:
20+
version: [18, 20, 22, latest]
1821
runs-on: ubuntu-latest
1922
steps:
2023
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2124
- uses: ./.github/actions/testagent/start
22-
- uses: ./.github/actions/node/oldest-maintenance-lts
25+
- uses: actions/setup-node@1d0ff469b7ec7b3cb9d8673fde0c81c44821de2a # v4.2.0
26+
with:
27+
node-version: ${{ matrix.version }}
2328
- uses: ./.github/actions/install
2429
- run: yarn test:debugger:ci
2530
- run: yarn test:integration:debugger
26-
- uses: ./.github/actions/node/newest-maintenance-lts
27-
- run: yarn test:debugger:ci
28-
- run: yarn test:integration:debugger
29-
- uses: ./.github/actions/node/active-lts
30-
- run: yarn test:debugger:ci
31-
- run: yarn test:integration:debugger
32-
- uses: ./.github/actions/node/latest
33-
- run: yarn test:debugger:ci
34-
- run: yarn test:integration:debugger
3531
- if: always()
3632
uses: ./.github/actions/testagent/logs
3733
with:
38-
suffix: debugger
34+
suffix: debugger-ubuntu-${{ matrix.version }}
3935
- uses: codecov/codecov-action@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # v5.3.1

0 commit comments

Comments
 (0)