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 7
7
name : Run linters
8
8
runs-on : ubuntu-latest
9
9
10
+ # Run the job on Node 20 and 23 which better support modern testing frameworks
10
11
strategy :
11
12
matrix :
12
- node-version : [18 .x, 20 .x]
13
+ node-version : [20 .x, 21.x, 23 .x]
13
14
15
+ # Steps involved for this particular task
14
16
steps :
17
+ # Checks out the repository and enables the use of commands made available in the project ie npm run
15
18
- name : Check out Git repository
16
19
uses : actions/checkout@v2
17
20
44
47
run : yarn install
45
48
46
49
- 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:
13
13
# Runs on a Linux based OS
14
14
runs-on : ubuntu-latest
15
15
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
17
17
strategy :
18
18
matrix :
19
- node-version : [18 .x, 20 .x]
19
+ node-version : [20 .x, 21.x, 23 .x]
20
20
21
21
# Steps involved for this particular task
22
22
steps :
You can’t perform that action at this time.
0 commit comments