🔥 3-day streak
GitHub Actions (GH-200)81 / 142
Question 81 of 142
A teammate shares this workflow snippet and asks how many jobs the matrix will produce and whether the shared config applies to every variant: ```yaml jobs: test: strategy: matrix: os: [ubuntu-latest, windows-latest] node: [18, 20] runs-on: ${{ matrix.os }} steps: &common-steps - uses: actions/checkout@v4 - run: node --version ``` You notice `&common-steps` is defined here but no `*common-steps` alias is referenced anywhere else in the file. What is the actual behavior of this workflow?
Reviewed for accuracy · Report an issueNext question