Skip to content

Commit cdd06b2

Browse files
committed
Fix yaml
1 parent 67bc243 commit cdd06b2

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

.editorconfig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,7 @@ end_of_line = lf
1010
charset = utf-8
1111
trim_trailing_whitespace = true
1212
insert_final_newline = false
13+
14+
[*.{yml,yaml}]
15+
indent_style = space
16+
indent_size = 2

.github/workflows/check_types.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ on:
77
jobs:
88
build:
99
runs-on: 'ubuntu-latest'
10-
steps:
11-
- uses: 'actions/checkout@v4'
12-
- name: 'Install pnpm'
13-
uses: 'pnpm/action-setup@v4'
14-
with:
15-
version: 9
16-
- name: 'Use Node'
17-
uses: 'actions/setup-node@v4'
18-
with:
19-
node-version: 20
20-
cache: 'pnpm'
21-
- name: 'Install dependencies'
22-
run: 'pnpm install'
23-
- name: 'Check types'
24-
run: 'pnpm check'
10+
steps:
11+
- uses: 'actions/checkout@v4'
12+
- name: 'Install pnpm'
13+
uses: 'pnpm/action-setup@v4'
14+
with:
15+
version: 9
16+
- name: 'Use Node'
17+
uses: 'actions/setup-node@v4'
18+
with:
19+
node-version: 20
20+
cache: 'pnpm'
21+
- name: 'Install dependencies'
22+
run: 'pnpm install'
23+
- name: 'Check types'
24+
run: 'pnpm check'

.vscode/settings.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,5 @@
1010
"[javascript]": {
1111
"editor.defaultFormatter": "vscode.typescript-language-features"
1212
},
13-
"[yaml]": {
14-
"editor.tabSize": 2,
15-
"editor.insertSpaces": true
16-
},
1713
"typescript.preferences.quoteStyle": "double"
1814
}

0 commit comments

Comments
 (0)