Skip to content

Commit 4db9fb4

Browse files
committed
feat(repo): github actions - lint - use node v24
because it is linting (not runtime), so why not to use the latest stable Node version
1 parent 89d0a1b commit 4db9fb4

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/lint.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
name: ESLint
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
13-
- name: Install node v14
14-
uses: actions/setup-node@v2
12+
- uses: actions/checkout@v4
13+
- name: Install node v24
14+
uses: actions/setup-node@v4
1515
with:
16-
node-version: '14'
16+
node-version: '24'
1717
- name: Install dependencies
18-
run: npm install
18+
run: npm ci
1919
- name: Run ESLint
20-
run: ./node_modules/.bin/eslint .
20+
run: npm run lint

0 commit comments

Comments
 (0)