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

Commit 0a777f7

Browse files
authored
Update lint action (#12)
1 parent 06ddc53 commit 0a777f7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/lint.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@ on: [pull_request]
33
jobs:
44
lint:
55
runs-on: ubuntu-latest
6+
strategy:
7+
matrix:
8+
# https://nodejs.org/en/about/releases/
9+
node-version: ['16', '18', '20']
610
steps:
711
- uses: actions/checkout@v3
812
- uses: actions/setup-node@v3
913
with:
10-
node-version-file: '.nvmrc'
14+
node-version: ${{ matrix.node-version }}
1115
- run: npm ci
1216
- run: npm run lint

0 commit comments

Comments
 (0)