From 3e5019b784a3770798cef7b304abe86d773a45fc Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Fri, 26 Jan 2024 17:17:30 -0600 Subject: [PATCH] ci: Update minimum node version in ci The pagination changes require Node.js 18 or greater, so update the test apparatus to use the latest LTS version of Node. --- .github/workflows/example.yml | 4 ++-- .github/workflows/publish.yml | 2 +- .github/workflows/test.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/example.yml b/.github/workflows/example.yml index 0de1b98..bb7a91c 100644 --- a/.github/workflows/example.yml +++ b/.github/workflows/example.yml @@ -32,7 +32,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 20 cache: "npm" - run: npm ci - run: npm run build @@ -50,7 +50,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 20 cache: "npm" - run: npm ci - run: npm run build diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 34da53c..aaf7141 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 20 cache: "npm" - run: npm ci - run: npm run build diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2d149a2..dbc37ca 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 20 cache: "npm" - run: npm ci - run: npm run build