Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove node 14 and 16 from workflow #1288

Merged
merged 3 commits into from
Feb 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/beige-peaches-divide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@meilisearch/autocomplete-client": minor
---

Remove node 14 and 16 from workflow
2 changes: 1 addition & 1 deletion .github/workflows/meilisearch-prototype-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: ['14', '16', '18']
node: ['18', '20']
name: integration-tests (Node.js ${{ matrix.node }})
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: ['14', '16', '18']
node: ['18', '20']
name: integration-tests (Node.js ${{ matrix.node }})
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: ['14', '16', '18']
node: ['18', '20']
name: integration-tests (Node.js ${{ matrix.node }})
steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 1 addition & 2 deletions bors.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
status = [
'style-check',
'types-check',
'integration-tests (Node.js 14)',
'integration-tests (Node.js 16)',
'integration-tests (Node.js 18)',
'integration-tests (Node.js 20)',
'autocomplete-client end-to-end-tests',
'instant-meilisearch end-to-end-tests',
]
Expand Down
2 changes: 1 addition & 1 deletion packages/autocomplete-client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ This package guarantees compatibility with [version v1.x of Meilisearch](https:/

**Node / NPM versions**:

- NodeJS >= 14 <= 18
- NodeJS >= 18

## ⚙️ Development Workflow and Contributing

Expand Down
Loading