Skip to content

Commit eded88e

Browse files
Update dev_pr.yaml
1 parent 3a443b8 commit eded88e

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

.github/workflows/dev_pr.yaml

+15-15
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,26 @@ jobs:
5252
# https://github.com/microsoft/vscode-ripgrep/issues/9#issuecomment-643965333
5353
GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }}
5454

55-
- name: extensions/vscode checks
56-
run: |
57-
cd extensions/vscode
58-
npx tsc --noEmit
59-
6055
- name: core install
6156
run: |
6257
cd core
6358
npm ci
6459
60+
- name: gui install
61+
run: |
62+
cd gui
63+
npm ci
64+
65+
- name: binary install
66+
run: |
67+
cd binary
68+
npm ci
69+
70+
- name: extensions/vscode checks
71+
run: |
72+
cd extensions/vscode
73+
npx tsc --noEmit
74+
6575
- name: core checks
6676
run: |
6777
cd core
@@ -71,21 +81,11 @@ jobs:
7181
env:
7282
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
7383

74-
- name: gui install
75-
run: |
76-
cd gui
77-
npm ci
78-
7984
- name: gui checks
8085
run: |
8186
cd gui
8287
npx tsc --noEmit
8388
84-
- name: binary install
85-
run: |
86-
cd binary
87-
npm ci
88-
8989
- name: binary checks
9090
run: |
9191
cd binary

0 commit comments

Comments
 (0)