Skip to content

Commit

Permalink
Introducing React Hooks for AppInsights (#1120)
Browse files Browse the repository at this point in the history
Co-authored-by: Mark Wolff <mark.wolff@microsoft.com>
  • Loading branch information
aaronpowell and markwolff committed May 29, 2020
1 parent 1f45259 commit 826504c
Show file tree
Hide file tree
Showing 26 changed files with 446 additions and 2,702 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/react.yml
@@ -0,0 +1,33 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: React CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:
defaults:
run:
shell: bash
working-directory: extensions/applicationinsights-react-js

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [10.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run build --if-present
- run: npm test
4 changes: 2 additions & 2 deletions AISKU/package.json
Expand Up @@ -44,7 +44,7 @@
"rollup-plugin-uglify": "^6.0.0",
"selenium-server-standalone-jar": "^3.141.5",
"serve-static": "^1.13.2",
"source-map-loader": "^0.2.3",
"source-map-loader": "^0.2.3",
"tslint": "^5.19.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "2.5.3"
Expand All @@ -57,7 +57,7 @@
"@microsoft/applicationinsights-core-js": "2.5.4",
"@microsoft/applicationinsights-dependencies-js": "2.5.4",
"@microsoft/applicationinsights-properties-js": "2.5.4",
"tslib": "^1.11.1"
"tslib": "1.11.2"
},
"license": "MIT"
}
2 changes: 1 addition & 1 deletion AISKULight/package.json
Expand Up @@ -33,7 +33,7 @@
"@microsoft/applicationinsights-core-js": "2.5.4"
},
"peerDependencies": {
"tslib": "^1.11.1"
"tslib": "1.11.2"
},
"license": "MIT"
}
2 changes: 1 addition & 1 deletion channels/applicationinsights-channel-js/package.json
Expand Up @@ -33,7 +33,7 @@
"dependencies": {
"@microsoft/applicationinsights-core-js": "2.5.4",
"@microsoft/applicationinsights-common": "2.5.4",
"tslib": "^1.11.1"
"tslib": "1.11.2"
},
"license": "MIT"
}
6 changes: 3 additions & 3 deletions common/config/rush/common-versions.json
Expand Up @@ -36,8 +36,8 @@
* For example, allow some projects to use an older TypeScript compiler
* (in addition to whatever "usual" version is being used by other projects in the repo):
*/
// "typescript": [
// "~2.4.0"
// ]
"typescript": [
"^3.9.2"
]
}
}

0 comments on commit 826504c

Please sign in to comment.