File tree Expand file tree Collapse file tree 7 files changed +9328
-5973
lines changed Expand file tree Collapse file tree 7 files changed +9328
-5973
lines changed Original file line number Diff line number Diff line change 5
5
using : " composite"
6
6
steps :
7
7
- name : " Setup :: Node"
8
- uses : actions/setup-node@v3
8
+ uses : actions/setup-node@v4
9
9
with :
10
10
node-version : 22
11
- cache : " yarn "
11
+ cache : " npm "
12
12
13
13
- name : " Bootstrap"
14
14
shell : bash
15
15
run : |
16
- yarn install
16
+ npm install
17
17
18
- - name : " Check :: yarn. lock"
18
+ - name : " Check :: lock"
19
19
shell : bash
20
20
run : |
21
- git diff yarn. lock;
22
- [ "0" == "$(git diff yarn. lock | wc -l | tr -d ' ')" ]
21
+ git diff package- lock.json ;
22
+ [ "0" == "$(git diff package- lock.json | wc -l | tr -d ' ')" ]
23
23
24
24
- name : " Check :: format"
25
25
shell : bash
26
26
run : |
27
- yarn format:check
27
+ npm run format:check
Original file line number Diff line number Diff line change @@ -31,10 +31,10 @@ jobs:
31
31
echo "version=$(node -e "console.log(require('./package.json').version);")" >> $GITHUB_OUTPUT
32
32
33
33
- name : " Build and Pack"
34
- run : yarn build:prod && yarn pack:extension
34
+ run : npm run build:prod && npm run pack:extension
35
35
36
36
- name : " Test"
37
- run : yarn test
37
+ run : npm run test
38
38
39
39
- name : " Upload vsix (Ubuntu only)"
40
40
if : matrix.os == 'ubuntu-latest'
Original file line number Diff line number Diff line change 19
19
uses : ./.github/actions/setup-env
20
20
21
21
- name : " Build and Pack"
22
- run : yarn build:prod && yarn pack:extension
22
+ run : npm run build:prod && npm run pack:extension
23
23
24
24
- name : " Less is more"
25
25
uses : caponetto/less-is-more@v1
Original file line number Diff line number Diff line change 24
24
uses : ./.github/actions/setup-env
25
25
26
26
- name : " Build and Pack"
27
- run : yarn build:prod && yarn pack:extension
27
+ run : npm run build:prod && npm run pack:extension
28
28
29
29
- name : " Publish :: VS Code Marketplace"
30
30
run : |
You can’t perform that action at this time.
0 commit comments