🔥 3-day streak
GitHub Actions (GH-200)83 / 142
Question 83 of 142
A workflow contains the following job strategy: ```yaml jobs: test: strategy: matrix: os: [ubuntu-latest, windows-latest] node: [16, 18, 20] exclude: - os: windows-latest node: 16 include: - os: macos-latest node: 20 runs-on: ${{ matrix.os }} steps: - run: node --version ``` When this workflow runs, how many jobs will appear in the run's job list?
Reviewed for accuracy · Report an issueNext question