Skip to content

Commit

Permalink
Testing two LTS node versions in the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiehewitt15 committed Jul 25, 2024
1 parent 49c26ce commit 6bf60f8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: '18.20.4'
node-version: ['18.20.4', 'v20.16.0']
- name: Cache node_modules
uses: actions/cache@v2
env:
Expand All @@ -43,7 +43,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
node: ['18.20.4']
node: [['18.20.4', 'v20.16.0']]

steps:
- uses: actions/checkout@v3
Expand All @@ -67,7 +67,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: '18.20.4'
node-version: ['18.20.4', 'v20.16.0']
- name: Cache node_modules
uses: actions/cache@v2
env:
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: '18.20.4'
node-version: ['18.20.4', 'v20.16.0']
- name: Cache node_modules
uses: actions/cache@v2
env:
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '18.20.4'
node-version: ['18.20.4', 'v20.16.0']

- name: Cache node_modules
uses: actions/cache@v2
Expand Down

0 comments on commit 6bf60f8

Please sign in to comment.