Skip to content
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
2 changes: 1 addition & 1 deletion .devcontainer/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '3'

services:
app:
image: "mcr.microsoft.com/devcontainers/javascript-node:16"
image: "mcr.microsoft.com/devcontainers/javascript-node:22"

volumes:
- "..:/workspace:cached"
Expand Down
36 changes: 18 additions & 18 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
steps:
- uses: actions/checkout@v6

- name: Use Node.js 18
- name: Use Node.js 22
uses: actions/setup-node@v6
with:
node-version: 18
node-version: 22
cache: 'npm'

- run: npm ci
Expand All @@ -34,7 +34,7 @@ jobs:

strategy:
matrix:
node-version: [18.x, 20.x, 21.x]
node-version: [22.x, 24.x, 26.x]
fail-fast: false

steps:
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
strategy:
matrix:
mssql-version: [2016, 2017, 2019, 2022]
node-version: [18.x, 20.x, 21.x]
node-version: [22.x, 24.x, 26.x]
fail-fast: false

steps:
Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}

azure-sql-auth:
name: Azure SQL Server / Node.js 18.x
name: Azure SQL Server / Node.js 22.x
runs-on: ubuntu-latest
timeout-minutes: 20

Expand All @@ -243,10 +243,10 @@ jobs:
steps:
- uses: actions/checkout@v6

- name: Use Node.js 18
- name: Use Node.js 22
uses: actions/setup-node@v6
with:
node-version: 18
node-version: 22
cache: 'npm'

- run: npm ci
Expand All @@ -267,7 +267,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}

azure-ad-auth:
name: Azure SQL Server / Node.js 18.x
name: Azure SQL Server / Node.js 22.x
runs-on: ubuntu-latest
timeout-minutes: 20

Expand All @@ -277,10 +277,10 @@ jobs:
steps:
- uses: actions/checkout@v6

- name: Use Node.js 18
- name: Use Node.js 22
uses: actions/setup-node@v6
with:
node-version: 18
node-version: 22
cache: 'npm'

- run: npm ci
Expand All @@ -303,7 +303,7 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}

token-credential-auth:
name: Azure SQL Server / Node.js 18.x
name: Azure SQL Server / Node.js 22.x
runs-on: ubuntu-latest
timeout-minutes: 20

Expand All @@ -313,10 +313,10 @@ jobs:
steps:
- uses: actions/checkout@v6

- name: Use Node.js 18
- name: Use Node.js 22
uses: actions/setup-node@v6
with:
node-version: 18
node-version: 22
cache: 'npm'

- run: npm ci
Expand All @@ -340,7 +340,7 @@ jobs:


azure-ad-service-principal-auth:
name: Azure SQL Server / Node.js 18.x
name: Azure SQL Server / Node.js 22.x
runs-on: ubuntu-latest
timeout-minutes: 20

Expand All @@ -350,10 +350,10 @@ jobs:
steps:
- uses: actions/checkout@v6

- name: Use Node.js 18
- name: Use Node.js 22
uses: actions/setup-node@v6
with:
node-version: 18
node-version: 22
cache: 'npm'

- run: npm ci
Expand Down Expand Up @@ -389,10 +389,10 @@ jobs:
steps:
- uses: actions/checkout@v6

- name: Use Node.js 18
- name: Use Node.js 22
uses: actions/setup-node@v6
with:
node-version: 18
node-version: 22
cache: 'npm'

- run: npm ci
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
steps:
- uses: actions/checkout@v6

- name: Use Node.js 20
- name: Use Node.js 22
uses: actions/setup-node@v6
with:
node-version: "20"
node-version: "22"
cache: 'npm'
registry-url: 'https://registry.npmjs.org'

Expand Down
13 changes: 9 additions & 4 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
version: "{build}"

# Newer Node.js releases require Windows 10 / Windows Server 2016 or higher.
# The default AppVeyor image (Visual Studio 2015) runs on Windows Server 2012 R2,
# so pin a newer image. SQL Server 2017 is still pre-installed on this one.
image: Visual Studio 2022

environment:
matrix:
- nodejs_version: "18"
- nodejs_version: "20"
- nodejs_version: "21"
- nodejs_version: "22"
- nodejs_version: "24"
- nodejs_version: "26"

branches:
only:
Expand All @@ -13,7 +18,7 @@ branches:
- /v\d+\.\d+\.\d+/

install:
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) x64
- npm install

services:
Expand Down
Loading
Loading