Skip to content
This repository was archived by the owner on Feb 9, 2023. It is now read-only.

Commit 2887e50

Browse files
committed
Use Node.js LTS for lint job
1 parent 74fbad2 commit 2887e50

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/nodejs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v2
2525

26-
- name: Use Node.js ${{ matrix.node }}
26+
- name: Use LTS Node.js
2727
uses: actions/setup-node@v2
2828
with:
29-
node-version: ${{ matrix.node }}
30-
cache: 'npm'
29+
node-version: 'lts/*'
30+
cache: npm
3131

3232
- name: Install latest npm
3333
run: npm install --global npm@latest
@@ -55,7 +55,7 @@ jobs:
5555
uses: actions/setup-node@v2
5656
with:
5757
node-version: ${{ matrix.node }}
58-
cache: 'npm'
58+
cache: npm
5959

6060
- name: Install latest npm
6161
run: npm install --global npm@latest

0 commit comments

Comments
 (0)