From 005f9161493b45857fafee717e5eb1ca1bfa2c00 Mon Sep 17 00:00:00 2001 From: Matvei Andrienko Date: Thu, 16 May 2024 17:43:33 +0200 Subject: [PATCH] xxx --- .github/workflows/sdk-typecheck.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/sdk-typecheck.yml b/.github/workflows/sdk-typecheck.yml index 97c00a49..5258db4d 100644 --- a/.github/workflows/sdk-typecheck.yml +++ b/.github/workflows/sdk-typecheck.yml @@ -19,15 +19,16 @@ jobs: path: protocol - name: Compile definitions - run: docker run --rm \ - -v $(pwd)/protocol:/local ghcr.io/getstream/openapi-generator:master generate \ - -i /local/openapi/video-openapi-clientside.yaml \ - -g typescript-fetch \ - -o /local/ts-sdk - --additional-properties=supportsES6=true \ - --additional-properties=modelPropertyNaming=original \ - --additional-properties=enumPropertyNaming=UPPERCASE \ - --additional-properties=withoutRuntimeChecks=true + run: | + docker run --rm \ + -v $(pwd)/protocol:/local ghcr.io/getstream/openapi-generator:master generate \ + -i /local/openapi/video-openapi-clientside.yaml \ + -g typescript-fetch \ + -o /local/ts-sdk + --additional-properties=supportsES6=true \ + --additional-properties=modelPropertyNaming=original \ + --additional-properties=enumPropertyNaming=UPPERCASE \ + --additional-properties=withoutRuntimeChecks=true - name: Checkout SDK uses: actions/checkout@v4