Skip to content

Commit f276734

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

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/eslint.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,13 @@ 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", "windows-2022"]
41+
node-version: [18.x, 20.x, 22.x]
42+
# See supported Node.js release schedule
43+
# at https://nodejs.org/en/about/releases/
3844
permissions:
3945
contents: read
4046
security-events: write

0 commit comments

Comments
 (0)