We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f0f9db commit 0aac310Copy full SHA for 0aac310
.github/workflows/nodejs.yml
@@ -26,13 +26,14 @@ jobs:
26
strategy:
27
matrix:
28
os: [macos-latest, windows-latest, ubuntu-latest]
29
+ node-version: [12.x, 14.x, 16.x, 18.x]
30
steps:
31
- uses: actions/checkout@v3
32
if: ${{ needs.changes.outputs.cms == 'true' }}
- - name: Use Node.js
33
+ - name: Use Node.js {{ matrix.node-version }}
34
uses: actions/setup-node@v3
35
with:
- node-version: 18
36
+ node-version: ${{ matrix.node-version }}
37
check-latest: true
38
39
- name: log versions
0 commit comments