Skip to content

Commit 1ef0730

Browse files
committed
chore: formatting and single quotes in yaml
1 parent 3f51afb commit 1ef0730

File tree

5 files changed

+40
-25
lines changed

5 files changed

+40
-25
lines changed

.github/workflows/cf-deploy.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
name: "@fireproof/core-cloud-cf-deploy"
1+
name: '@fireproof/core-cloud-cf-deploy'
22
on:
33
push:
44
tags:
5-
- "core-cf@*"
5+
- 'core-cf@*'
66
paths-ignore:
7-
- "dashboard/**"
7+
- 'dashboard/**'
88

99
env:
10-
FP_CI: "fp_ci"
11-
GIT_DISCOVERY_ACROSS_FILESYSTEM: "true"
10+
FP_CI: 'fp_ci'
11+
GIT_DISCOVERY_ACROSS_FILESYSTEM: 'true'
1212

1313
jobs:
1414
ci:

.github/workflows/ci-base.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "@fireproof/core - CI - base"
1+
name: '@fireproof/core - CI - base'
22

33
on:
44
workflow_call:
@@ -11,8 +11,8 @@ on:
1111
# required: true
1212

1313
env:
14-
FP_CI: "fp_ci"
15-
GIT_DISCOVERY_ACROSS_FILESYSTEM: "true"
14+
FP_CI: 'fp_ci'
15+
GIT_DISCOVERY_ACROSS_FILESYSTEM: 'true'
1616

1717
jobs:
1818
pre-build:
@@ -165,7 +165,7 @@ jobs:
165165
smoke:
166166
timeout-minutes: 4
167167
name: smoke
168-
needs: ["test-node", "build"]
168+
needs: ['test-node', 'build']
169169
runs-on: blacksmith-4vcpu-ubuntu-2204
170170
steps:
171171
- uses: actions/checkout@v4

.github/workflows/ci.yaml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
1-
name: "@fireproof/core"
1+
name: '@fireproof/core'
22
on:
33
push:
44
tags:
5-
- "*"
6-
- "!core-cf@*"
7-
- "!v*"
8-
- "*"
5+
- '*'
6+
- '!core-cf@*'
7+
- '!v*'
98
paths-ignore:
10-
- "dashboard/**"
9+
- 'dashboard/**'
1110

1211
concurrency:
1312
group: ${{ github.workflow }}-${{ github.ref }}
1413
cancel-in-progress: true
1514

1615
env:
17-
FP_CI: "fp_ci"
18-
GIT_DISCOVERY_ACROSS_FILESYSTEM: "true"
16+
FP_CI: 'fp_ci'
17+
GIT_DISCOVERY_ACROSS_FILESYSTEM: 'true'
1918

2019
jobs:
2120
ci:

.github/workflows/dashboard.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
name: "@fireproof/dashboard"
1+
name: '@fireproof/dashboard'
22
on:
33
push:
44
tags:
5-
- "dashboard@**"
5+
- 'dashboard@**'
66
branches:
7-
- "mabels/backend"
7+
- 'mabels/backend'
88
paths:
9-
- "dashboard/**"
9+
- 'dashboard/**'
1010

1111
pull_request:
1212
branches:
13-
- "mabels/backend"
13+
- 'mabels/backend'
1414
paths:
15-
- "dashboard/**"
15+
- 'dashboard/**'
1616

1717
concurrency:
1818
group: dashboard-${{ github.workflow }}-${{ github.ref }}
@@ -37,7 +37,7 @@ jobs:
3737
with:
3838
run_install: false
3939
version: 10
40-
cache: "pnpm"
40+
cache: 'pnpm'
4141

4242
- uses: actions/checkout@v4
4343

.prettierrc

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,21 @@
22
"printWidth": 132,
33
"singleQuote": false,
44
"semi": true,
5-
"useTabs": false
5+
"useTabs": false,
6+
"overrides": [
7+
{
8+
"files": ".github/workflows/*.yaml",
9+
"options": {
10+
"singleQuote": true,
11+
"quoteProps": "preserve"
12+
}
13+
},
14+
{
15+
"files": ".github/workflows/*.yml",
16+
"options": {
17+
"singleQuote": true,
18+
"quoteProps": "preserve"
19+
}
20+
}
21+
]
622
}

0 commit comments

Comments
 (0)