upgrade jest and node v18 (#374)

This commit is contained in:
Philipp 2022-11-03 12:33:19 +01:00 committed by GitHub
parent d88147726e
commit 1c7670a359
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 1216 additions and 1263 deletions

View File

@ -12,7 +12,7 @@ jobs:
strategy: strategy:
matrix: matrix:
node-version: [12.x, 14.x, 16.x] node-version: [14.x, 16.x, 18.x]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
@ -27,7 +27,7 @@ jobs:
- run: npm run test:cov - run: npm run test:cov
- run: bash <(curl -s https://codecov.io/bash) - run: bash <(curl -s https://codecov.io/bash)
- name: Semantic Release - name: Semantic Release
if: github.event_name == 'push' && matrix.node-version == '16.x' if: github.event_name == 'push' && matrix.node-version == '18.x'
uses: cycjimmy/semantic-release-action@v2 uses: cycjimmy/semantic-release-action@v2
env: env:
GH_TOKEN: ${{ secrets.GH_TOKEN }} GH_TOKEN: ${{ secrets.GH_TOKEN }}

2467
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -32,7 +32,7 @@
"devDependencies": { "devDependencies": {
"@nestjs/common": "^9.1.6", "@nestjs/common": "^9.1.6",
"@types/express": "^4.17.14", "@types/express": "^4.17.14",
"@types/jest": "^28.1.8", "@types/jest": "^29.2.1",
"@types/lodash": "^4.14.187", "@types/lodash": "^4.14.187",
"@types/node": "^18.11.9", "@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.0", "@typescript-eslint/eslint-plugin": "^5.42.0",
@ -41,12 +41,12 @@
"eslint-config-prettier": "^8.5.0", "eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1", "eslint-plugin-prettier": "^4.2.1",
"fastify": "^4.9.2", "fastify": "^4.9.2",
"jest": "^28.1.3", "jest": "^29.2.2",
"prettier": "^2.7.1", "prettier": "^2.7.1",
"reflect-metadata": "^0.1.13", "reflect-metadata": "^0.1.13",
"rxjs": "^7.5.7", "rxjs": "^7.5.7",
"sqlite3": "^5.1.2", "sqlite3": "^5.1.2",
"ts-jest": "^28.0.8", "ts-jest": "^29.0.3",
"ts-node": "^10.9.1", "ts-node": "^10.9.1",
"typeorm": "^0.3.10", "typeorm": "^0.3.10",
"typescript": "^4.8.4" "typescript": "^4.8.4"