Skip to content

Commit

Permalink
add matrix node version
Browse files Browse the repository at this point in the history
  • Loading branch information
daryazata committed Apr 8, 2022
1 parent 5c930d5 commit 288f0df
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,18 @@ jobs:
node-version:
strategy:
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest

runs-on: ${{ matrix.os }}
# os:
# - ubuntu-latest
# - windows-latest
# - macos-latest
node-version: [6, 17, 10]
# runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
steps:
- name: Log Node Version
run: node -v
- uses: actions/setup-node@v1
with:
node-version: 10
node-version: ${{ matrix.node_version }}
- name: Log Node Version
run: node -v

0 comments on commit 288f0df

Please sign in to comment.