Skip to content

Commit 2ac8a36

Browse files
feat: matrix build (#28)
1 parent 77e6476 commit 2ac8a36

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_version: [10, 11, 12]
1518
steps:
1619
- uses: actions/checkout@v1
1720
with:
1821
fetch-depth: 3
22+
- name: Use Node.js ${{ matrix.node_version }}
23+
uses: actions/setup-node@v1
24+
with:
25+
version: ${{ matrix.node_version }}
1926
- name: Install Package dependencies
2027
run: yarn install
2128
- name: Run tests

0 commit comments

Comments
 (0)