Skip to content

Commit 9f931e9

Browse files
chore: github action version updates
1 parent 364b87d commit 9f931e9

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/linting-action.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,14 @@ jobs:
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

@@ -44,4 +47,4 @@ jobs:
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

.github/workflows/test-action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)