Skip to content

Commit

Permalink
double quotes in yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Mineev committed Aug 3, 2021
1 parent b27a09f commit 8152bf2
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 33 deletions.
1 change: 1 addition & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ indent_style = space
trim_trailing_whitespace = false

[*.yml]
quote_type= double
indent_size = 2
indent_style = space

28 changes: 14 additions & 14 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-frontend-size-limit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ci-test-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 1 addition & 2 deletions backend/_example/memory_store/compose-dev-memstore.yml
Original file line number Diff line number Diff line change
@@ -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: ../../..
Expand Down

0 comments on commit 8152bf2

Please sign in to comment.