Skip to content

Commit 7c0c3f1

Browse files
committed
Merge branch 'dev' into 3.0.0
2 parents 9ad1150 + a26c288 commit 7c0c3f1

File tree

5 files changed

+71
-48
lines changed

5 files changed

+71
-48
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
---
22
name: Bug report
33
about: Create a report to help us improve
4-
title: ""
5-
labels: ""
6-
assignees: ""
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
78
---
89

910
# Bug Report
@@ -40,6 +41,7 @@ For more information, see the `CONTRIBUTING` guide.
4041
Add any other context about the problem here..
4142

4243
## Usage Information
44+
Request ID - Value of the `requestId` field if you are receiving a Graph API error response
4345

4446
SDK Version - [SDK version you are using]
4547

.github/ISSUE_TEMPLATE/feature_request.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
---
22
name: Feature request
33
about: Suggest an idea for this project
4-
title: ""
5-
labels: ""
6-
assignees: ""
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
78
---
89

910
# Feature Request

.github/workflows/ci_validation.yml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
2+
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
3+
4+
name: Graph JS SDK CI
5+
6+
on: [pull_request]
7+
8+
jobs:
9+
build:
10+
11+
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
node-version: [8.x, 10.x, 12.x, 14.x, 15.x]
16+
# Adding version 8.x considering SharePoint Framework depends on JS Graph library
17+
# https://docs.microsoft.com/en-us/sharepoint/dev/spfx/compatibility
18+
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
19+
20+
steps:
21+
- uses: actions/checkout@v2
22+
- name: Use Node.js ${{ matrix.node-version }}
23+
uses: actions/setup-node@v1
24+
with:
25+
node-version: ${{ matrix.node-version }}
26+
- run: npm ci
27+
- run: npm run build --if-present
28+
- run: npm test

msgraph-sdk-javascript.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
page_type: sample
2+
products:
3+
- office-365
4+
- ms-graph
5+
languages:
6+
- javascript
7+
- typescript
8+
extensions:
9+
contentType: sdks
10+
technologies:
11+
- Microsoft Graph
12+
- Microsoft identity platform
13+
createdDate: '9/22/2016 2:44:49 PM'
14+
title: Microsoft Graph JavaScript Client Library
15+
description: Microsoft Graph client library for JavaScript

scripts/package-lock.json

+19-42
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)