File tree Expand file tree Collapse file tree 3 files changed +22
-4
lines changed
Expand file tree Collapse file tree 3 files changed +22
-4
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ pull_request :
5+ push :
6+ branches :
7+ - master
8+
9+ jobs :
10+ code-style :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v2
14+ - uses : actions/setup-node@v2
15+ with :
16+ node-version : " 14"
17+ - name : Install dependencies
18+ run : npm install
19+ - name : Run eslint
20+ run : npm run lint
Original file line number Diff line number Diff line change 1616 " Programming Languages"
1717 ],
1818 "activationEvents" : [
19- " onLanguage:vba"
19+ " onLanguage:vba"
2020 ],
2121 "main" : " ./out/extension.js" ,
2222 "contributes" : {
Original file line number Diff line number Diff line change 11import * as vscode from 'vscode' ;
22
33export function activate ( context : vscode . ExtensionContext ) {
4- }
5-
6- export function deactivate ( ) {
4+ console . log ( 'vscode-vba activated.' )
75}
You can’t perform that action at this time.
0 commit comments