This repository was archived by the owner on Mar 10, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +9052
-6520
lines changed Expand file tree Collapse file tree 5 files changed +9052
-6520
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -14,13 +14,13 @@ jobs:
14
14
uses : actions/setup-node@v2
15
15
with :
16
16
node-version : ' 14.x'
17
- - run : yarn
18
- - run : yarn run prettier-check
19
- - run : yarn run eslint
20
- - run : yarn run build
17
+ - run : npm install
18
+ - run : npm run prettier-check
19
+ - run : npm run eslint
20
+ - run : npm run build
21
21
- name : release
22
22
if : github.repository_owner == 'sourcegraph' && github.event_name == 'push' && github.ref == 'refs/heads/master'
23
23
env :
24
24
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
25
25
VSCE_TOKEN : ${{ secrets.VSCE_TOKEN }}
26
- run : yarn run semantic-release
26
+ run : npm run semantic-release
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ Please file an issue: https://github.com/sourcegraph/sourcegraph-vscode/issues/n
41
41
To develop the extension:
42
42
43
43
- ` git clone ` the repository somewhere
44
- - Run ` yarn ` in the directory
44
+ - Run ` npm install ` in the directory
45
45
- Open the repo with ` code . `
46
46
- Press <kbd >F5</kbd > to open a new VS Code window with the extension loaded.
47
47
- After making changes to ` src/extension.ts ` , reload the window by clicking the reload icon in the debug toolbar or with <kbd >F5</kbd >.
You can’t perform that action at this time.
0 commit comments