Skip to content

Setup OS tests

Setup OS tests #3

Workflow file for this run

# This is a basic workflow that is manually triggered
name: Setup OS tests
# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
workflow_dispatch:
# Inputs the workflow accepts.
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
example_matrix:
runs-on: ubuntu-latest
strategy:
matrix:
version: [10, 12]
steps:
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.version }}