This repository was archived by the owner on May 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Added VSCode Extension E2E tests #156
Open
vineetmimrot
wants to merge
33
commits into
master
Choose a base branch
from
e2e-test
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
346a4a4
Added GitHub Workflow YAML definition.
vineetmimrot 2897347
Added GitHub Workflow YAML definition.
vineetmimrot 48cb7a0
Added GitHub Workflow YAML definition.
vineetmimrot aa7a4d0
Added GitHub Workflow YAML definition.
vineetmimrot 2d29978
Added GitHub Workflow YAML definition.
vineetmimrot efc015f
Added GitHub Workflow YAML definition.
vineetmimrot 2ae4c46
Added GitHub Workflow YAML definition.
vineetmimrot b33b14d
Added GitHub Workflow YAML definition.
vineetmimrot 692ae25
e2e-v1
vineetmimrot b83de5c
minor fix
vineetmimrot 4b64540
final version of test
vineetmimrot 9020d3a
set env var
vineetmimrot d0708c6
undo commit
vineetmimrot 4514ecf
minor fix
vineetmimrot dd06f21
Adding workflow
vineetmimrot 2c6146d
Merge branch 'master' into e2e-test
vineetmimrot 6b820eb
Update extension-tests.yml
vineetmimrot 1dec0d2
Update extension-tests.yml
vineetmimrot 5256400
workflow fix
vineetmimrot 869df54
minor fix
vineetmimrot 3ea0031
minor fix
vineetmimrot e1d0e6e
m2
vineetmimrot b3a5769
show tests results
vineetmimrot 81b8b5d
fix workflow failure
vineetmimrot 5347e8a
test failure scenario
vineetmimrot 7568384
workflow fix
vineetmimrot 6c9f762
m1
vineetmimrot 21bf24a
m2
vineetmimrot e738bf7
m3
vineetmimrot 8fa0653
m4
vineetmimrot ad7ce25
final fix
vineetmimrot 8ff630d
m1
vineetmimrot e99c3c3
Merge branch 'master' into e2e-test
vineetmimrot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| --- | ||
| name: Build Failed Issue | ||
| about: Something went wrong with CI build | ||
| title: Build Failed Issue [{{payload.sender.login}}] | ||
| labels: Build Failed | ||
| assignees: bishal-pdMSFT, vineetmimrot, kanika1894 | ||
|
|
||
| --- | ||
|
|
||
| Event triggered by: {{payload.sender.login}} | ||
| Workflow: {{ workflow }} | ||
| Branch: {{ref}} | ||
|
|
||
| Something went wrong with GitHub checks for {{ workflow }}. For more info visit- | ||
|
|
||
| https://github.com/microsoft/vscode-deploy-azure/actions?query=workflow%3A%22Extension%20Test%20analysis%22%20is%3Afailure |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| name: "Extension Test analysis" | ||
|
|
||
| on: [push] | ||
|
|
||
| jobs: | ||
| build: | ||
|
|
||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| os: [macos-latest, ubuntu-latest, windows-latest] | ||
|
|
||
| runs-on: ${{ matrix.os }} | ||
|
|
||
| steps: | ||
| - uses: actions/checkout@v2 | ||
|
|
||
| - name: Setup node | ||
| uses: actions/setup-node@v2-beta | ||
| with: | ||
| node-version: '12' | ||
|
|
||
| - name: npm install | ||
| run: npm install | ||
|
|
||
| - name: Build extension | ||
| run: npm run compile | ||
|
|
||
| - name: Run tests | ||
| uses: GabrielBB/[email protected] | ||
| with: | ||
| run: npm test | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| Azure_UserName: ${{ secrets.Azure_UserName }} | ||
| Azure_PAT: ${{ secrets.Azure_PAT }} | ||
|
|
||
| - name: Create an issue | ||
| uses: JasonEtco/[email protected] | ||
| if: ${{ failure() && github.ref == 'refs/heads/master' }} | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| with: | ||
| filename: .github/ISSUE_TEMPLATE/test-failed-issue.md |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixes repo analysis long retry bug