1
0
Fork 0
mirror of https://github.com/actions/setup-node.git synced 2024-09-19 16:06:43 +00:00

Use matrix for workflow

This commit is contained in:
Josh Gross 2020-04-21 14:43:21 -04:00
parent 55897e37f3
commit b1f2e78536
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 17A6308EA2144978

View file

@ -28,7 +28,10 @@ jobs:
run: __tests__/verify-no-unstaged-changes.sh
test:
runs-on: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
operating-system: [ubuntu-latest, windows-latest]
defaults:
run:
shell: bash