Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
rossiam committed Mar 27, 2023
1 parent 5a517ac commit 915c120
Show file tree
Hide file tree
Showing 9 changed files with 4,314 additions and 4,595 deletions.
7 changes: 7 additions & 0 deletions .changeset/old-windows-move.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@smartthings/core-sdk": major
---

updated dependencies, including major axios update

NOTE: Dependents which use axios should also update it.
4 changes: 2 additions & 2 deletions .github/workflows/ci-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: "npm"
- run: npm ci --ignore-scripts
- run: npx commitlint --from HEAD~${{ github.event.pull_request.commits }} --to HEAD
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18

- name: Install Dependencies
run: npm ci
Expand Down
13 changes: 7 additions & 6 deletions jest.config.js → jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
module.exports = {
globals: {
'ts-jest': {
tsconfig: 'tsconfig.json',
},
},
import { Config } from 'jest'


const config: Config = {
preset: 'ts-jest',
moduleFileExtensions: [
'ts',
'js',
Expand All @@ -14,3 +13,5 @@ module.exports = {
collectCoverageFrom: ['src/**/*.ts'],
testEnvironment: 'node',
}

export default config
Loading

0 comments on commit 915c120

Please sign in to comment.