File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 77 name : Run linters
88 runs-on : ubuntu-latest
99
10+ # Run the job on Node 20 and 23 which better support modern testing frameworks
1011 strategy :
1112 matrix :
12- node-version : [18 .x, 20 .x]
13+ node-version : [20 .x, 21.x, 23 .x]
1314
15+ # Steps involved for this particular task
1416 steps :
17+ # Checks out the repository and enables the use of commands made available in the project ie npm run
1518 - name : Check out Git repository
1619 uses : actions/checkout@v2
1720
4447 run : yarn install
4548
4649 - name : Run linters
47- run : yarn lint # assumes you have a `lint` script in package.json for ESLint and Prettier
50+ run : yarn lint
Original file line number Diff line number Diff line change @@ -13,10 +13,10 @@ jobs:
1313 # Runs on a Linux based OS
1414 runs-on : ubuntu-latest
1515
16- # Run the job on Node 18 and 20 which better support modern testing frameworks
16+ # Run the job on Node 20 and 23 which better support modern testing frameworks
1717 strategy :
1818 matrix :
19- node-version : [18 .x, 20 .x]
19+ node-version : [20 .x, 21.x, 23 .x]
2020
2121 # Steps involved for this particular task
2222 steps :
You can’t perform that action at this time.
0 commit comments