Skip to content

Commit 177947d

Browse files
authored
Update Node.js versions that are used in tests (#1620)
* Update Node.js versions that are used in tests to current Maintenance and LTS versions * Update bors.toml
1 parent a8b5e4b commit 177947d

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

.github/workflows/meilisearch-prototype-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
- '7700:7700'
4343
strategy:
4444
matrix:
45-
node: ['14', '16', '18']
45+
node: ['18', '20']
4646
name: integration-tests (Node.js ${{ matrix.node }})
4747
steps:
4848
- uses: actions/checkout@v4

.github/workflows/pre-release-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- '7700:7700'
4040
strategy:
4141
matrix:
42-
node: ['14', '16', '18']
42+
node: ['18', '20']
4343
name: integration-tests (Node.js ${{ matrix.node }})
4444
steps:
4545
- uses: actions/checkout@v4

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v4
1111
- uses: actions/setup-node@v4
1212
with:
13-
node-version: 16
13+
node-version: 20
1414
registry-url: https://registry.npmjs.org/
1515
cache: 'yarn'
1616
- name: Check release validity

.github/workflows/tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
strategy:
3535
fail-fast: false
3636
matrix:
37-
node: ['14', '16', '18']
37+
node: ['18', '20']
3838
name: integration-tests (Node.js ${{ matrix.node }})
3939
steps:
4040
- uses: actions/checkout@v4
@@ -69,7 +69,7 @@ jobs:
6969
- name: Setup node
7070
uses: actions/setup-node@v4
7171
with:
72-
node-version: 16
72+
node-version: 20
7373
cache: 'yarn'
7474
- name: Install dependencies
7575
run: yarn --dev
@@ -87,7 +87,7 @@ jobs:
8787
- name: Setup node
8888
uses: actions/setup-node@v4
8989
with:
90-
node-version: 16
90+
node-version: 20
9191
cache: 'yarn'
9292
- name: Install dependencies
9393
run: yarn --dev

bors.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
status = [
22
'style-check',
33
'types-check',
4-
'integration-tests (Node.js 14)',
5-
'integration-tests (Node.js 16)',
64
'integration-tests (Node.js 18)',
5+
'integration-tests (Node.js 20)',
76
]
87
# 1 hour timeout
98
timeout-sec = 3600

0 commit comments

Comments
 (0)