Skip to content

Commit

Permalink
test: Remove support for Node 18
Browse files Browse the repository at this point in the history
Complete the upgrade to Node 20 by removing the Node 18 CI check and
going back to using `.nvmrc` as the source of truth for which version to
use.
  • Loading branch information
arbrandes committed Mar 8, 2024
1 parent b6963be commit 5455323
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 20]

steps:
- name: Checkout
Expand All @@ -21,7 +18,7 @@ jobs:
- name: Setup Nodejs
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
node-version-file: '.nvmrc'
- name: Install dependencies
run: npm ci
- name: Lint
Expand Down

0 comments on commit 5455323

Please sign in to comment.