We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d933a3 commit f276734Copy full SHA for f276734
.github/workflows/eslint.yml
@@ -34,7 +34,13 @@ on: # yamllint disable-line rule:truthy
34
jobs:
35
eslint:
36
name: Run eslint scanning
37
- runs-on: ubuntu-24.04
+ 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/
44
permissions:
45
contents: read
46
security-events: write
0 commit comments