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

Chore: clean old CI versions & exceptions #6047

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docs-deploy.yml
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 20.x

# cache node_modules
- name: Restore cached dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Expand Up @@ -109,7 +109,7 @@ jobs:
name: Test user experience
strategy:
matrix:
node-version: [18.x]
node-version: [20.x]
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
steps:
- name: Checkout Repository
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/unit-tests.yml
Expand Up @@ -36,10 +36,6 @@ jobs:
- name: Run npm install
run: npm install

- name: Run npm install mysql2@3.2.0 if Node 12.x
run: npm install mysql2@3.2.0
if: matrix.node-version == '12.x'

- run: npm run build

- name: Run Tests
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -18,7 +18,7 @@ Node.js, featuring:
- both a [promise](https://knex.github.io/documentation/#Interfaces-Promises) and [callback](https://knex.github.io/documentation/#Interfaces-Callbacks) API
- a [thorough test suite](https://github.com/knex/knex/actions)

Node.js versions 12+ are supported.
Node.js versions 16+ are supported.

- Take a look at the [full documentation](https://knex.github.io/documentation) to get started!
- Browse the [list of plugins and tools](https://github.com/knex/knex/blob/master/ECOSYSTEM.md) built for knex
Expand Down