Skip to content

Commit a71c506

Browse files
committed
🧹 CHORE: Comment out debug steps in action.yml to clean up workflow. Updated concurrency groups in ci-semantic-release-sync.yml to include branch reference for better isolation.
1 parent a3757ac commit a71c506

2 files changed

Lines changed: 14 additions & 14 deletions

File tree

‎.github/actions/setup-and-test/action.yml‎

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,21 @@ runs:
3030
with:
3131
version: latest
3232

33-
- name: Debug after pnpm action setup, Show working directory and package.json
34-
run: |
35-
pwd && ls -al && cat package.json
36-
shell: bash
33+
# - name: Debug after pnpm action setup, Show working directory and package.json
34+
# run: |
35+
# pwd && ls -al && cat package.json
36+
# shell: bash
3737

3838
- name: Setup CI, Build and Test Package
3939
uses: actions/setup-node@v4
4040
with:
4141
node-version: "lts/*"
4242
cache: "pnpm"
4343

44-
- name: Debug post node, Show working directory and package.json
45-
run: |
46-
pwd && ls -al && cat package.json
47-
shell: bash
44+
# - name: Debug post node, Show working directory and package.json
45+
# run: |
46+
# pwd && ls -al && cat package.json
47+
# shell: bash
4848

4949
- name: Debug pnpm environment
5050
run: |
@@ -60,10 +60,10 @@ runs:
6060
# run: pnpm help
6161
# shell: bash
6262

63-
- name: Debug Show working directory and package.json
64-
run: |
65-
pwd && ls -al && cat package.json
66-
shell: bash
63+
# - name: Debug Show working directory and package.json
64+
# run: |
65+
# pwd && ls -al && cat package.json
66+
# shell: bash
6767

6868
- name: Install dependencies
6969
run: pnpm install --frozen-lockfile --loglevel debug

‎.github/workflows/ci-semantic-release-sync.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
name: Test & Build
7373
runs-on: ubuntu-latest
7474
concurrency:
75-
group: test
75+
group: test-${{ github.ref }}
7676
cancel-in-progress: true
7777
steps:
7878
- name: Checkout code
@@ -91,7 +91,7 @@ jobs:
9191
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
9292
runs-on: ubuntu-latest
9393
concurrency:
94-
group: release
94+
group: release-${{ github.ref }}
9595
cancel-in-progress: true
9696
permissions:
9797
contents: write

0 commit comments

Comments
 (0)