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 01583af commit cbe98c2Copy full SHA for cbe98c2
.github/workflows/ci.yml
@@ -3,25 +3,28 @@ name: node_js CI
3
on:
4
push:
5
branches:
6
- - master
+ - master
7
pull_request:
8
9
- - '**'
+ - '**'
10
11
jobs:
12
- build:
+ tests:
13
runs-on: ubuntu-20.04
14
+ strategy:
15
+ matrix:
16
+ node: [12, 14, 16]
17
steps:
18
- name: Checkout
19
uses: actions/checkout@v2
20
21
- name: Setup Nodejs
22
uses: actions/setup-node@v1
23
with:
- node-version: 12
24
+ node-version: ${{ matrix.node }}
25
26
- name: Setup npm
- run: npm install -g npm@6
27
+ run: npm i -g npm@8.5.x
28
29
- name: Install dependencies
30
run: npm ci
0 commit comments