Skip to content
This repository was archived by the owner on Mar 10, 2022. It is now read-only.

Commit 1b10752

Browse files
authored
fix: support valid remote and branch names (#147)
1 parent 9fa14da commit 1b10752

16 files changed

+22110
-408
lines changed

.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
"parserOptions": {
88
"ecmaVersion": 2018,
99
"sourceType": "module",
10-
"project": "tsconfig.json"
10+
"project": "tsconfig.eslint.json"
1111
}
1212
}

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ jobs:
1818
- run: npm run prettier-check
1919
- run: npm run eslint
2020
- run: npm run build
21+
- run: npm run test
22+
- run: yarn nyc report --reporter json
23+
- run: 'bash <(curl -s https://codecov.io/bash)'
2124
- name: release
2225
if: github.repository_owner == 'sourcegraph' && github.event_name == 'push' && github.ref == 'refs/heads/master'
2326
env:

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
out
22
node_modules
33
*.vsix
4+
coverage/
5+
.nyc_output/

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Sourcegraph for Visual Studio Code
22

33
[![vs marketplace](https://img.shields.io/vscode-marketplace/v/sourcegraph.sourcegraph.svg?label=vs%20marketplace)](https://marketplace.visualstudio.com/items?itemName=sourcegraph.sourcegraph) [![downloads](https://img.shields.io/vscode-marketplace/d/sourcegraph.sourcegraph.svg)](https://marketplace.visualstudio.com/items?itemName=sourcegraph.sourcegraph) [![build](https://img.shields.io/github/workflow/status/sourcegraph/sourcegraph-vscode/build/master)](https://github.com/sourcegraph/sourcegraph-vscode/actions?query=branch%3Amaster+workflow%3Abuild) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
4+
[![codecov](https://codecov.io/gh/sourcegraph/sourcegraph-vscode/branch/master/graph/badge.svg?token=8TLCsGxBeS)](https://codecov.io/gh/sourcegraph/sourcegraph-vscode)
45

56
The Sourcegraph extension for VS Code enables you to open and search code on Sourcegraph.com easily and efficiently.
67

0 commit comments

Comments
 (0)