Skip to content

Commit

Permalink
add matrices and different oses for deno
Browse files Browse the repository at this point in the history
  • Loading branch information
kjpou1 committed Jan 12, 2022
1 parent 26c8ffd commit eecf4d7
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .github/workflows/matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,24 @@ jobs:
matrix:
os: [macos-latest, ubuntu-latest, window-latest]
node_version: [6,8,10]
max-parallel: 2
#max-parallel: 2
runs-on: ${{ matrix.os }}
steps:
- name: Log node version
run: node -v
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node_version }}
node-version: ${{ matrix.node_version }}
deno-version:
strategy:
matrix:
os: [macos-latest, ubuntu-latest, window-latest]
deno_version: [1.17.0, 1.17.1]
#max-parallel: 2
runs-on: ${{ matrix.os }}
steps:
- name: Log deno version
run: deno --version
- uses: actions/setup-deno@v1
with:
deno-version: ${{ matrix.deno_version }}

0 comments on commit eecf4d7

Please sign in to comment.