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 196bea7 commit 959da66Copy full SHA for 959da66
.github/workflows/npm.yml
@@ -12,18 +12,20 @@ env:
12
NODE: 16
13
14
jobs:
15
- run:
16
- name: NPM Installation
17
- runs-on: ubuntu-latest
18
-
+ build:
+ strategy:
+ matrix:
+ platform: [ubuntu-latest, windows-latest]
19
+ node-version: [12.x, 14.x, 16.x, 17.x]
20
+ runs-on: ${{ matrix.platform }}
21
steps:
22
- name: Clone repository
23
uses: actions/checkout@v3
24
25
- name: Set up Node.js
26
uses: actions/setup-node@v3
27
with:
- node-version: ${{ env.NODE }}
28
+ node-version: ${{ env.node-version }}
29
30
- name: Install npm dependencies
31
run: npm install
0 commit comments