Skip to content
This repository was archived by the owner on Nov 19, 2025. It is now read-only.

Commit 8655abb

Browse files
committed
feat: add editorconfig-checker
1 parent 3eaf981 commit 8655abb

File tree

3 files changed

+32
-0
lines changed

3 files changed

+32
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,24 @@ jobs:
2828

2929
- name: Run syncpack
3030
run: pnpm syncpack lint
31+
32+
editorconfig:
33+
runs-on: ubuntu-latest
34+
steps:
35+
- name: Checkout
36+
uses: actions/checkout@v4
37+
38+
- name: Install pnpm
39+
uses: pnpm/action-setup@v4
40+
41+
- name: Install Node.js
42+
uses: actions/setup-node@v4
43+
with:
44+
node-version: 22.14.0
45+
cache: "pnpm"
46+
47+
- name: Install dependencies
48+
run: pnpm install
49+
50+
- name: Run EditorConfig Checker
51+
run: pnpm editorconfig-checker

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"devDependencies": {
3+
"editorconfig-checker": "6.0.1",
34
"syncpack": "13.0.2"
45
},
56
"engines": {

pnpm-lock.yaml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)