We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7825085 commit 74dcaf9Copy full SHA for 74dcaf9
.github/workflows/ci.yaml
@@ -100,12 +100,13 @@ jobs:
100
cargo-cache
101
102
test_binding:
103
- name: Test bindings
+ name: Test bindings on ${{ matrix.os }} - node@${{ matrix.node }}
104
needs: lint_and_build
105
strategy:
106
fail-fast: false
107
matrix:
108
os: [ubuntu-latest, macos-latest, windows-latest]
109
+ node: ['10', '12', '14']
110
runs-on: ${{ matrix.os }}
111
112
steps:
@@ -114,7 +115,7 @@ jobs:
114
115
- name: Setup node
116
uses: actions/setup-node@v1
117
with:
- node-version: 12
118
+ node-version: ${{ matrix.node }}
119
120
- name: Set platform name
121
run: |
0 commit comments