From 8152bf2db96d20bfabf60c968b7520af68be1ebd Mon Sep 17 00:00:00 2001 From: Pavel Mineev Date: Tue, 3 Aug 2021 11:17:10 +0300 Subject: [PATCH] double quotes in yml --- .editorconfig | 1 + .github/workflows/ci-build.yml | 28 +++++++++---------- .github/workflows/ci-frontend-size-limit.yml | 6 ++-- .github/workflows/ci-frontend.yml | 12 ++++---- .github/workflows/ci-test-backend.yml | 16 +++++------ .../memory_store/compose-dev-memstore.yml | 3 +- 6 files changed, 33 insertions(+), 33 deletions(-) diff --git a/.editorconfig b/.editorconfig index 8d2048b93a..89e5fade50 100644 --- a/.editorconfig +++ b/.editorconfig @@ -7,6 +7,7 @@ indent_style = space trim_trailing_whitespace = false [*.yml] +quote_type= double indent_size = 2 indent_style = space diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index c83bb82e69..7b4e16a34e 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -5,22 +5,22 @@ on: branches: tags: paths: - - '.github/workflows/ci-build.yml' - - 'backend/**' - - 'frontend/**' - - '.dockerignore' - - 'docker-init.sh' - - 'Dockerfile' - - '!**.md' + - ".github/workflows/ci-build.yml" + - "backend/**" + - "frontend/**" + - ".dockerignore" + - "docker-init.sh" + - "Dockerfile" + - "!**.md" pull_request: paths: - - '.github/workflows/ci-build.yml' - - 'backend/**' - - 'frontend/**' - - '.dockerignore' - - 'docker-init.sh' - - 'Dockerfile' - - '!**.md' + - ".github/workflows/ci-build.yml" + - "backend/**" + - "frontend/**" + - ".dockerignore" + - "docker-init.sh" + - "Dockerfile" + - "!**.md" jobs: build: diff --git a/.github/workflows/ci-frontend-size-limit.yml b/.github/workflows/ci-frontend-size-limit.yml index a8dc491015..fe5073aa66 100644 --- a/.github/workflows/ci-frontend-size-limit.yml +++ b/.github/workflows/ci-frontend-size-limit.yml @@ -3,9 +3,9 @@ name: frontend on: pull_request: paths: - - '.github/workflows/ci-frontend-size-limit.yml' - - 'frontend/**' - - '!**.md' + - ".github/workflows/ci-frontend-size-limit.yml" + - "frontend/**" + - "!**.md" jobs: size: diff --git a/.github/workflows/ci-frontend.yml b/.github/workflows/ci-frontend.yml index 45e4366726..d71930b69a 100644 --- a/.github/workflows/ci-frontend.yml +++ b/.github/workflows/ci-frontend.yml @@ -5,14 +5,14 @@ on: branches: tags: paths: - - '.github/workflows/ci-frontend.yml' - - 'frontend/**' - - '!**.md' + - ".github/workflows/ci-frontend.yml" + - "frontend/**" + - "!**.md" pull_request: paths: - - '.github/workflows/ci-frontend.yml' - - 'frontend/**' - - '!**.md' + - ".github/workflows/ci-frontend.yml" + - "frontend/**" + - "!**.md" jobs: check-translations: diff --git a/.github/workflows/ci-test-backend.yml b/.github/workflows/ci-test-backend.yml index be16343642..eccb26e07a 100644 --- a/.github/workflows/ci-test-backend.yml +++ b/.github/workflows/ci-test-backend.yml @@ -5,16 +5,16 @@ on: branches: tags: paths: - - '.github/workflows/ci-test-backend.yml' - - 'backend/**' - - '!backend/scripts/**' - - '!**.md' + - ".github/workflows/ci-test-backend.yml" + - "backend/**" + - "!backend/scripts/**" + - "!**.md" pull_request: paths: - - '.github/workflows/ci-test-backend.yml' - - 'backend/**' - - '!backend/scripts/**' - - '!**.md' + - ".github/workflows/ci-test-backend.yml" + - "backend/**" + - "!backend/scripts/**" + - "!**.md" jobs: backend: runs-on: ubuntu-latest diff --git a/backend/_example/memory_store/compose-dev-memstore.yml b/backend/_example/memory_store/compose-dev-memstore.yml index 6d4d50453f..d182e5be4c 100644 --- a/backend/_example/memory_store/compose-dev-memstore.yml +++ b/backend/_example/memory_store/compose-dev-memstore.yml @@ -1,10 +1,9 @@ # compose file demonstrating custom storage use. The memory_store (see backend/_example/memory_store) starts # in a separate container and remark42 communicates to mem_store.r42 via STORE_RPC_API url -version: '2' +version: "2" services: - remark42: build: context: ../../..