File tree 4 files changed +33
-26
lines changed
4 files changed +33
-26
lines changed Original file line number Diff line number Diff line change 9
9
build :
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v2
12
+ - uses : actions/checkout@v3
13
+ - uses : actions/setup-node@v3
13
14
with :
14
- persist-credentials : false
15
- - uses : actions/setup-node@v2
15
+ node-version : ' 20'
16
+ registry-url : ' https://registry.npmjs.org'
17
+ - uses : pnpm/action-setup@v2
16
18
with :
17
- node- version : ' 16 '
19
+ version : 8
18
20
- name : Install deps
19
- run : yarn
20
- - name : Publish to VSCE
21
- run : npx vsce publish -p $VSCE_TOKEN
22
- env :
23
- VSCE_TOKEN : ${{ secrets.VSCE_TOKEN }}
24
- - name : Publish to Open VSX
25
- run : npx ovsx publish -p $OVSX_TOKEN
26
- env :
27
- OVSX_TOKEN : ${{ secrets.OVSX_TOKEN }}
21
+ run : pnpm i
22
+ - name : Publish to Open VSX Registry
23
+ uses : HaaLeo/publish-vscode-extension@v1
24
+ with :
25
+ pat : ${{ secrets.OVSX_TOKEN }}
26
+ dependencies : false
27
+ - name : Publish to Visual Studio Marketplace
28
+ uses : HaaLeo/publish-vscode-extension@v1
29
+ with :
30
+ pat : ${{ secrets.VSCE_TOKEN }}
31
+ dependencies : false
32
+ registryUrl : https://marketplace.visualstudio.com
Original file line number Diff line number Diff line change 1
1
out
2
2
dist
3
- temp
4
3
node_modules
5
4
.vscode-test /
6
5
* .vsix
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
. " $( dirname " $0 " ) /_/husky.sh"
3
3
4
- yarn lint
4
+ npm run lint
Original file line number Diff line number Diff line change 1
- .vscode /**
2
- .vscode-test /**
3
- out /test /**
4
- src /**
5
- .gitignore
6
- .yarnrc
7
- vsc-extension-quickstart.md
8
- ** /tsconfig.json
9
- ** /.eslintrc.json
10
1
** /* .map
11
2
** /* .ts
12
- node_modules /**
13
- rollup.conf.js
14
3
gulpfile.js
4
+ pnpm-lock.yaml
5
+ rollup.conf.mjs
6
+ src /**
7
+ tsconfig.json
8
+ .babelrc.js
9
+ .browserslistrc
10
+ .editorconfig
11
+ .eslintignore
12
+ .eslintrc.js
13
+ .github /**
14
+ .gitignore
15
+ .husky /**
16
+ .npmrc
17
+ .vscode /**
You can’t perform that action at this time.
0 commit comments