Skip to content

Commit d72b8c7

Browse files
authored
ci: use node.js version from matrix (#539)
* ci: use node.js version from matrix * ci: include node.js v15
1 parent 51059bc commit d72b8c7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/pull_request.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,12 @@ jobs:
2121
runs-on: ubuntu-latest
2222
strategy:
2323
matrix:
24-
node-version: [10.x, 12.x, 14.x]
24+
node-version: [10.x, 12.x, 14.x, 15.x]
2525
steps:
2626
- uses: actions/checkout@v2
2727
- uses: actions/setup-node@v1
28+
with:
29+
node-version: ${{ matrix.node-version }}
2830
- run: npm ci
2931
- run: npm run test:coverage
3032
typecheck:

0 commit comments

Comments
 (0)