Skip to content

Commit 6f406f3

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

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

.github/actions/build/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ inputs:
99
node_version:
1010
description: Pnpm version to use
1111
required: false
12-
default: 22.x
12+
default: 23.x
1313
pnpm_version:
1414
description: Node version to use
1515
required: false

.github/actions/install/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ inputs:
55
node_version:
66
description: Pnpm version to use
77
required: true
8-
default: 22.x
8+
default: 23.x
99
pnpm_version:
1010
description: Node version to use
1111
required: false

.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)