Skip to content

Commit b7361bc

Browse files
committed
ci: Migrate to actions/setup-node@v2, test v16
1 parent 2c7ac9c commit b7361bc

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/nodejs.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,15 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
node-version: [10.x, 12.x, 14.x, 15.x]
16+
node-version: ['10', '12', '14', '16']
1717

1818
steps:
1919
- uses: actions/checkout@v2
2020
- name: Use Node.js ${{ matrix.node-version }}
21-
uses: actions/setup-node@v1
21+
uses: actions/setup-node@v2
2222
with:
2323
node-version: ${{ matrix.node-version }}
24+
check-latest: true
2425
- name: Cache Node.js modules
2526
id: yarn-cache
2627
uses: actions/cache@v2

0 commit comments

Comments
 (0)