Skip to content

Commit 61c230d

Browse files
author
Gonzalo Diaz
committed
[CONFIG] [Github Actions] ESLint running as matrix.
1 parent 9d933a3 commit 61c230d

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/eslint.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,15 @@ on: # yamllint disable-line rule:truthy
3434
jobs:
3535
eslint:
3636
name: Run eslint scanning
37-
runs-on: ubuntu-24.04
37+
runs-on: ${{ matrix.os }}
38+
strategy:
39+
matrix:
40+
os: ["ubuntu-24.04", "macos-14"
41+
# , "windows-2022"
42+
]
43+
node-version: [18.x, 20.x, 22.x]
44+
# See supported Node.js release schedule
45+
# at https://nodejs.org/en/about/releases/
3846
permissions:
3947
contents: read
4048
security-events: write

0 commit comments

Comments
 (0)