Skip to content

matrix

matrix #2

name: Sixteenth Workflow
on: push
jobs:
testing-matrix-job:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [12, 14, 16]
runs-on: ${{ matrix.os }}
steps:
- run: node -v
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: node -v