File tree Expand file tree Collapse file tree 1 file changed +11
-14
lines changed Expand file tree Collapse file tree 1 file changed +11
-14
lines changed Original file line number Diff line number Diff line change @@ -2,16 +2,16 @@ name: Client CI
2
2
3
3
on :
4
4
push :
5
- tags : ' ** '
5
+ tags : " ** "
6
6
paths :
7
- - ' client/**'
8
- - ' .github/workflows/client.yml'
7
+ - " client/**"
8
+ - " .github/workflows/client.yml"
9
9
10
10
workflow_dispatch :
11
11
12
12
defaults :
13
13
run :
14
- working-directory : ' client'
14
+ working-directory : " client"
15
15
16
16
jobs :
17
17
build_publish :
@@ -20,19 +20,16 @@ jobs:
20
20
VSCE_PAT : ${{ secrets.VSCE_PAT }}
21
21
22
22
steps :
23
- - uses : actions/checkout@v3
23
+ - uses : actions/checkout@v4
24
24
25
- - uses : actions/setup-node@v3
25
+ - uses : actions/setup-node@v4
26
26
with :
27
- node-version : 16.x
28
- cache : yarn
29
- cache-dependency-path : client/yarn. lock
27
+ node-version : lts/*
28
+ cache : npm
29
+ cache-dependency-path : client/package- lock.json
30
30
31
31
- name : Install dependencies
32
- run : yarn install
33
-
34
- - name : Install vsce
35
- run : yarn global add vsce
32
+ run : npm install
36
33
37
34
- name : Publish extension
38
- run : vsce publish
35
+ run : npx @vscode/ vsce publish
You can’t perform that action at this time.
0 commit comments