Skip to content

Commit 67dc724

Browse files
committed
ci: run with multiple node versions
Signed-off-by: Kipras Melnikovas <kipras@kipras.org>
1 parent f17128e commit 67dc724

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,15 @@ on: [push, workflow_dispatch]
55
jobs:
66
test:
77
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
node: [12, 14, 16]
811

912
steps:
1013
- uses: actions/checkout@v2
1114
- uses: actions/setup-node@v2
1215
with:
13-
node-version: "12"
16+
node-version: ${{ matrix.node }}
1417
- run: yarn --frozen-lockfile
1518
- run: yarn test
1619

0 commit comments

Comments
 (0)