Skip to content

Commit

Permalink
chore: github action version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexMachin1997 committed Oct 31, 2024
1 parent 364b87d commit 9f931e9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/linting-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@ jobs:
name: Run linters
runs-on: ubuntu-latest

# Run the job on Node 20 and 23 which better support modern testing frameworks
strategy:
matrix:
node-version: [18.x, 20.x]
node-version: [20.x, 21.x, 23.x]

# Steps involved for this particular task
steps:
# Checks out the repository and enables the use of commands made available in the project ie npm run
- name: Check out Git repository
uses: actions/checkout@v2

Expand Down Expand Up @@ -44,4 +47,4 @@ jobs:
run: yarn install

- name: Run linters
run: yarn lint # assumes you have a `lint` script in package.json for ESLint and Prettier
run: yarn lint
4 changes: 2 additions & 2 deletions .github/workflows/test-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
# Runs on a Linux based OS
runs-on: ubuntu-latest

# Run the job on Node 18 and 20 which better support modern testing frameworks
# Run the job on Node 20 and 23 which better support modern testing frameworks
strategy:
matrix:
node-version: [18.x, 20.x]
node-version: [20.x, 21.x, 23.x]

# Steps involved for this particular task
steps:
Expand Down

0 comments on commit 9f931e9

Please sign in to comment.