Skip to content

Commit 915c120

Browse files
committed
chore: update dependencies
1 parent 5a517ac commit 915c120

File tree

9 files changed

+4314
-4595
lines changed

9 files changed

+4314
-4595
lines changed

.changeset/old-windows-move.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"@smartthings/core-sdk": major
3+
---
4+
5+
updated dependencies, including major axios update
6+
7+
NOTE: Dependents which use axios should also update it.

.github/workflows/ci-cd.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fetch-depth: 0
2020
- uses: actions/setup-node@v3
2121
with:
22-
node-version: 16
22+
node-version: 18
2323
cache: "npm"
2424
- run: npm ci --ignore-scripts
2525
- run: npx commitlint --from HEAD~${{ github.event.pull_request.commits }} --to HEAD
@@ -59,7 +59,7 @@ jobs:
5959
- name: Setup Node.js
6060
uses: actions/setup-node@v3
6161
with:
62-
node-version: 16
62+
node-version: 18
6363

6464
- name: Install Dependencies
6565
run: npm ci
Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
module.exports = {
2-
globals: {
3-
'ts-jest': {
4-
tsconfig: 'tsconfig.json',
5-
},
6-
},
1+
import { Config } from 'jest'
2+
3+
4+
const config: Config = {
5+
preset: 'ts-jest',
76
moduleFileExtensions: [
87
'ts',
98
'js',
@@ -14,3 +13,5 @@ module.exports = {
1413
collectCoverageFrom: ['src/**/*.ts'],
1514
testEnvironment: 'node',
1615
}
16+
17+
export default config

0 commit comments

Comments
 (0)