Skip to content
This repository was archived by the owner on Jun 1, 2022. It is now read-only.

Commit fe565a3

Browse files
authored
[#60] Prebuild multiple node versions (#61)
1 parent 99ba8d3 commit fe565a3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/prebuild.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,16 @@ jobs:
1313
- ubuntu-latest
1414
- windows-latest
1515
# - macOS-latest
16+
node:
17+
- '12.x'
18+
- '13.x'
1619

20+
name: OS ${{ matrix.os }}, Node ${{ matrix.node }}
1721
steps:
1822
- uses: actions/checkout@master
1923
- uses: actions/setup-node@v1
2024
with:
21-
node-version: 12
25+
node-version: ${{ matrix.node }}
2226
- name: Install Tree-sitter
2327
run: yarn global add tree-sitter-cli
2428
- name: Generate parser

0 commit comments

Comments
 (0)