This repository was archived by the owner on Mar 10, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +28
-20
lines changed Expand file tree Collapse file tree 4 files changed +28
-20
lines changed Original file line number Diff line number Diff line change
1
+ name : build
2
+
3
+ on : [push, pull_request]
4
+
5
+ env :
6
+ FORCE_COLOR : 3
7
+
8
+ jobs :
9
+ build :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v2
13
+ - name : Use Node.js
14
+ uses : actions/setup-node@v2
15
+ with :
16
+ node-version : ' 14.x'
17
+ - run : yarn
18
+ - run : yarn run prettier-check
19
+ - run : yarn run eslint
20
+ - run : yarn run build
21
+ - name : release
22
+ if : github.repository_owner == 'sourcegraph' && github.event_name == 'push' && github.ref == 'refs/heads/master'
23
+ env :
24
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
25
+ VSCE_TOKEN : ${{ secrets.VSCE_TOKEN }}
26
+ run : yarn run semantic-release
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
.editorconfig
2
+ .github /**
2
3
.gitignore
3
4
.prettierignore
4
- .travis.yml
5
5
.vscode-test /**
6
6
.vscode /**
7
7
** /* .map
Original file line number Diff line number Diff line change 1
1
# Sourcegraph for Visual Studio Code
2
2
3
- [ ![ 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://travis-ci.com/ sourcegraph/sourcegraph-vscode.svg?branch= master )] ( https://travis-ci .com/sourcegraph/sourcegraph-vscode ) [ ![ 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 )
3
+ [ ![ 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
4
5
5
The Sourcegraph extension for VS Code enables you to open and search code on Sourcegraph.com easily and efficiently.
6
6
You can’t perform that action at this time.
0 commit comments