Skip to content

Commit

Permalink
feat: update mssql dependency and other dependencies as well (typeorm…
Browse files Browse the repository at this point in the history
…#9763)

* updating dependencies

* fixing circleci config

* reverting mongodb version back

* increasing cli commands test timeout
  • Loading branch information
pleerock authored and digitop-duynguyen committed Feb 9, 2023
1 parent 7ea21c0 commit 2b65ee8
Show file tree
Hide file tree
Showing 7 changed files with 6,711 additions and 15,078 deletions.
23 changes: 11 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,21 +82,21 @@ jobs:
lint:
working_directory: ~/typeorm
docker:
- image: circleci/node:12
- image: circleci/node:16
steps:
- checkout
- install-packages:
cache-key: node12
cache-key: node16
- run: npm run lint

build:
working_directory: ~/typeorm
docker:
- image: circleci/node:12
- image: circleci/node:16
steps:
- checkout
- install-packages:
cache-key: node12
cache-key: node16
- run: npm run compile
- persist_to_workspace:
root: ~/typeorm
Expand All @@ -110,7 +110,7 @@ jobs:
default: ""
node-version:
type: string
default: "12"
default: "16"
working_directory: ~/typeorm
docker:
- image: circleci/node:<< parameters.node-version >>
Expand Down Expand Up @@ -201,27 +201,26 @@ workflows:
matrix:
parameters:
node-version:
- "12"
- "14"
- "16"
- test:
name: test (cockroachdb) - Node v12
name: test (cockroachdb) - Node v16
requires:
- lint
- build
databases: "cockroachdb"
node-version: "12"
node-version: "16"
- test:
name: test (oracle) - Node v12
name: test (oracle) - Node v16
requires:
- lint
- build
databases: "oracle"
node-version: "12"
node-version: "16"
- test:
name: test (postgres 12) - Node v12
name: test (postgres 12) - Node v16
requires:
- lint
- build
databases: "postgres-12"
node-version: "12"
node-version: "16"
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ services:

# mssql
mssql:
image: "mcr.microsoft.com/mssql/server:2017-latest-ubuntu"
image: "mcr.microsoft.com/mssql/server:2022-latest"
container_name: "typeorm-mssql"
ports:
- "1433:1433"
Expand Down

0 comments on commit 2b65ee8

Please sign in to comment.