Skip to content

Commit bee7f33

Browse files
committed
chore(github): adds debug version print
1 parent c963570 commit bee7f33

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,14 @@ jobs:
6262
- name: 🧱 Install
6363
uses: ./.github/actions/install
6464

65+
- name: 🧱 Versions
66+
run: |
67+
# ================= 🔍 Versions =================
68+
pnpm exec node --version
69+
pnpm exec eslint --version
70+
pnpm exec prettier --version
71+
pnpm exec stylelint --version
72+
6573
- name: 🔍 Check
6674
run: |
6775
# ================= 🔍 Check =================

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,8 @@
178178
"check:svelte:watch": "svelte-kit sync && svelte-check --tsconfig tsconfig.build.json --watch",
179179
"check": "run-s check:type check:svelte",
180180
"check:watch": "run-p check:type:watch check:svelte:watch",
181-
"lint": "eslint .",
182-
"lint:fix": "eslint . --fix",
181+
"lint": "eslint src demo test",
182+
"lint:fix": "eslint src demo test --fix",
183183
"style": "stylelint **/*.{svelte,css,scss,less,html} --go '{\"gitignore\":true}'",
184184
"style:fix": "pnpm run style --fix",
185185
"test:unit": "vitest --run --coverage",

0 commit comments

Comments
 (0)