Skip to content

Commit

Permalink
creating issue
Browse files Browse the repository at this point in the history
  • Loading branch information
GJS2162 committed Oct 15, 2022
1 parent f4e2ce1 commit 89ab8a3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,17 @@ on: push

jobs:
node-version:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ macos-latest , ubuntu-latest , windows-latest]
node_version: [ 6 ,7 ,8 ]
runs-on: ${{ matrix.os }}
steps:
- name: Log node version
run: node -v
- uses: actions/setup-node@v3
with:
node-version: 6
node-version: ${{ matrix.node_version }}
- name: Log node version
run: node -v

Expand Down

0 comments on commit 89ab8a3

Please sign in to comment.