Skip to content

Commit

Permalink
Run relevant CI jobs on Node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
caleb531 committed Aug 27, 2024
1 parent 59e7764 commit 8c991ea
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ name: lint

on:
push:
branches: [ "main", "develop" ]
branches: ['main', 'develop']
pull_request:
branches: [ "*" ]
branches: ['*']

jobs:
lint:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ name: tests

on:
push:
branches: [ "main", "develop" ]
branches: ['main', 'develop']
pull_request:
branches: [ "*" ]
branches: ['*']

jobs:
test:
Expand All @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [18.x]
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down

0 comments on commit 8c991ea

Please sign in to comment.