double quotes in yml

This commit is contained in:
Pavel Mineev
2021-08-03 03:22:27 -05:00
committed by Umputun
parent b27a09fb3f
commit 36840ed240
6 changed files with 33 additions and 33 deletions
+1
View File
@@ -7,6 +7,7 @@ indent_style = space
trim_trailing_whitespace = false
[*.yml]
quote_type= double
indent_size = 2
indent_style = space
+14 -14
View File
@@ -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:
+3 -3
View File
@@ -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:
+6 -6
View File
@@ -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:
+8 -8
View File
@@ -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
@@ -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: ../../..