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 89ab8a3 commit bf322bc
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,28 @@ jobs:
matrix:
os: [ macos-latest , ubuntu-latest , windows-latest]
node_version: [ 6 ,7 ,8 ]
include:
- os: ubuntu-latest
node-version: 8
is_ubuntu_8: "true"
exclude:
- os: ubuntu-latest
node-version: 6
- os: macos-latest
node-version: 8
runs-on: ${{ matrix.os }}
env:
IS_UBUNTU_8: ${{ matrix.is_ubuntu_8 }}
steps:
- name: Log node version
run: node -v
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
- name: Log node version
run: node -v
run: |
node -v
echo $IS_UBUNTU_8
Expand Down

0 comments on commit bf322bc

Please sign in to comment.