File tree 1 file changed +19
-18
lines changed
1 file changed +19
-18
lines changed Original file line number Diff line number Diff line change @@ -44,47 +44,48 @@ jobs:
44
44
path : binary/node_modules
45
45
key : ${{ runner.os }}-node-${{ hashFiles('binary/package-lock.json') }}
46
46
47
- - name : Install extension Dependencies
47
+ - name : extensions/vscode install
48
48
run : |
49
- cd extensions/vscode
49
+ cd
50
50
npm ci
51
51
env :
52
52
# https://github.com/microsoft/vscode-ripgrep/issues/9#issuecomment-643965333
53
53
GITHUB_TOKEN : ${{ secrets.CI_GITHUB_TOKEN }}
54
54
55
- - name : Install gui Dependencies
55
+ - name : extensions/vscode checks
56
56
run : |
57
- cd gui
58
- npm ci
57
+ cd extensions/vscode
58
+ npx tsc --noEmit
59
59
60
- - name : Install Core Dependencies
60
+ - name : core install
61
61
run : |
62
62
cd core
63
63
npm ci
64
64
65
- - name : Install Binary Dependencies
66
- run : |
67
- cd binary
68
- npm ci
69
-
70
65
- name : core checks
71
66
run : |
72
67
cd core
68
+ npm ci
73
69
npx tsc --noEmit
74
70
npm run lint
75
71
npm run test
76
72
77
- - name : tsc extensions/vscode
73
+ - name : gui install
78
74
run : |
79
- cd extensions/vscode
80
- npx tsc --noEmit
75
+ cd
76
+ npm ci
81
77
82
- - name : tsc binary
78
+ - name : gui checks
83
79
run : |
84
- cd binary
80
+ cd gui
85
81
npx tsc --noEmit
86
82
87
- - name : tsc gui
83
+ - name : binary install
88
84
run : |
89
- cd gui
85
+ cd
86
+ npm ci
87
+
88
+ - name : binary checks
89
+ run : |
90
+ cd binary
90
91
npx tsc --noEmit
You can’t perform that action at this time.
0 commit comments