We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79ae8ca commit 33134d7Copy full SHA for 33134d7
.github/workflows/checks.yml
@@ -140,12 +140,11 @@ jobs:
140
fail-fast: false
141
matrix:
142
module: ${{ fromJSON(needs.detect-modules.outputs.modules) }}
143
- runner: [ubuntu-22.04]
144
node-version: [20.x, 22.x, 24.x]
145
container-runtime: [docker, podman]
146
uses: ./.github/workflows/test-template.yml
147
with:
148
- runner: ${{ matrix.runner }}
+ runner: ubuntu-22.04
149
node-version: ${{ matrix.node-version }}
150
container-runtime: ${{ matrix.container-runtime }}
151
workspace: "${{ matrix.module }}"
.github/workflows/test-template.yml
@@ -16,6 +16,7 @@ on:
16
17
jobs:
18
test:
19
+ name: "Run"
20
runs-on: ${{ inputs.runner }}
21
steps:
22
- name: Code checkout
0 commit comments