Skip to content

Commit 831c6d5

Browse files
authored
chore(scripts): remove double usage client (#3179)
1 parent 5903b82 commit 831c6d5

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/actions/setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ runs:
2323

2424
- name: Validate gradle wrapper
2525
if: inputs.type != 'minimal'
26-
uses: gradle/wrapper-validation-action@v3
26+
uses: gradle/actions/wrapper-validation@v3
2727

2828
- name: Setup gradle
2929
if: inputs.type != 'minimal'

.github/workflows/check.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,8 @@ jobs:
325325
runs-on: macos-latest
326326
needs:
327327
- setup
328-
- client_gen
328+
- specs
329+
- scripts
329330
if: |
330331
always() &&
331332
startsWith(github.head_ref, 'chore/prepare-release-') &&

scripts/common.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,7 @@ export const GENERATORS = Object.entries(clientsConfig).reduce(
7373

7474
export const LANGUAGES = [...new Set(Object.values(GENERATORS).map((gen) => gen.language))];
7575

76-
export const CLIENTS = [
77-
...new Set(Object.values(GENERATORS).map((gen) => gen.client)),
78-
'usage',
79-
'crawler',
80-
];
76+
export const CLIENTS = [...new Set(Object.values(GENERATORS).map((gen) => gen.client)), 'crawler'];
8177

8278
export async function run(
8379
command: string,

0 commit comments

Comments
 (0)