Skip to content

Commit 451d61c

Browse files
Merge pull request #29 from technote-space/feature/#28
feat: matrix build (#28)
2 parents 77e6476 + a34b319 commit 451d61c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,17 @@ jobs:
1212
jest:
1313
name: Jest
1414
runs-on: ubuntu-latest
15+
strategy:
16+
matrix:
17+
node: ['8', '10', '11', '12']
1518
steps:
1619
- uses: actions/checkout@v1
1720
with:
1821
fetch-depth: 3
22+
- name: Setup node
23+
uses: actions/setup-node@v1
24+
with:
25+
node-version: ${{ matrix.node }}
1926
- name: Install Package dependencies
2027
run: yarn install
2128
- name: Run tests

0 commit comments

Comments
 (0)