Skip to content

Commit 83311a8

Browse files
committed
🧹 chore(action): clean up commented debug steps for clarity
1 parent 2aef417 commit 83311a8

File tree

1 file changed

+22
-31
lines changed

1 file changed

+22
-31
lines changed

‎action.yml‎

Lines changed: 22 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -22,40 +22,35 @@ runs:
2222
with:
2323
fetch-depth: 0
2424

25-
- name: Post checkout Debug Show working directory and package.json
26-
run: |
27-
pwd && ls -al && cat package.json
28-
shell: bash
29-
30-
- name: Post checkout Debug, Show git status and remotes
31-
run: git --version && git status && git remote -v && git log --oneline --decorate --graph -n 10
32-
shell: bash
25+
# - name: Post checkout Debug Show working directory and package.json
26+
# run: |
27+
# pwd && ls -al && cat package.json
28+
# shell: bash
3329

34-
# - name: PNPM
35-
# run: corepack enable && corepack prepare pnpm@latest --activate
36-
# run: corepack enable && corepack prepare pnpm@latest --activate
37-
# shell: bash
30+
# - name: Post checkout Debug, Show git status and remotes
31+
# run: git --version && git status && git remote -v && git log --oneline --decorate --graph -n 10
32+
# shell: bash
3833

3934
- name: Setup pnpm
4035
uses: pnpm/action-setup@v4
4136
with:
4237
version: latest
4338

44-
- name: Debug after pnpm action setup, Show working directory and package.json
45-
run: |
46-
pwd && ls -al && cat package.json
47-
shell: bash
39+
# - name: Debug after pnpm action setup, Show working directory and package.json
40+
# run: |
41+
# pwd && ls -al && cat package.json
42+
# shell: bash
4843

4944
- name: Setup CI, Build and Test Package
5045
uses: actions/setup-node@v4
5146
with:
5247
node-version: "lts/*"
5348
cache: "pnpm"
5449

55-
- name: Debug post node, Show working directory and package.json
56-
run: |
57-
pwd && ls -al && cat package.json
58-
shell: bash
50+
# - name: Debug post node, Show working directory and package.json
51+
# run: |
52+
# pwd && ls -al && cat package.json
53+
# shell: bash
5954

6055
- name: Debug pnpm environment
6156
run: |
@@ -67,23 +62,19 @@ runs:
6762
env | grep -E 'PNPM|NPM|NODE|PATH'
6863
shell: bash
6964

70-
# - name: pnpm help
71-
# run: pnpm help
65+
# - name: Debug Show working directory and package.json
66+
# run: |
67+
# pwd && ls -al && cat package.json
7268
# shell: bash
7369

74-
- name: Debug Show working directory and package.json
75-
run: |
76-
pwd && ls -al && cat package.json
77-
shell: bash
78-
7970
- name: Install dependencies
8071
run: pnpm install --frozen-lockfile --loglevel debug
8172
shell: bash
8273

83-
- name: Debug post install, Show working directory and package.json
84-
run: |
85-
pwd && ls -al && cat package.json
86-
shell: bash
74+
# - name: Debug post install, Show working directory and package.json
75+
# run: |
76+
# pwd && ls -al && cat package.json
77+
# shell: bash
8778

8879
- name: Run lint
8980
run: |

0 commit comments

Comments
 (0)