Skip to content

Commit

Permalink
Updated to new configure-aws-credentials@v2 action.
Browse files Browse the repository at this point in the history
Fixed JSON trailing comma
  • Loading branch information
splindsay-92 committed Apr 29, 2024
1 parent e98d455 commit 761e795
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: npm run docs

- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
uses: aws-actions/configure-aws-credentials@v2
with:
aws-region: eu-west-2
role-to-assume: arn:aws:iam::${{ secrets.ABLY_AWS_ACCOUNT_ID_SDK }}:role/ably-labs-sdk-builds-ably-chat-js
Expand Down
22 changes: 17 additions & 5 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{
"include": ["./src/**/*.ts"],
"exclude": ["./src/**/*.test.tsx", "./src/**/*.test.ts", "./src/fakes/**/*.ts"],
"include": [
"./src/**/*.ts"
],
"exclude": [
"./src/**/*.test.tsx",
"./src/**/*.test.ts",
"./src/fakes/**/*.ts"
],
"compilerOptions": {
"target": "es6",
"rootDir": "./src",
Expand All @@ -14,7 +20,13 @@
"skipLibCheck": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"types": ["node"]
},
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
"types": [
"node"
]
}
}

0 comments on commit 761e795

Please sign in to comment.