Skip to content

Commit

Permalink
chore: added debug job to every workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lquixada committed Jul 2, 2023
1 parent 2b9ecf0 commit 7aacd14
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ jobs:
if: steps.cacheModules.outputs.cache-hit != 'true'
run: npm install

debug:
name: Debug
runs-on: ubuntu-latest
steps:
- uses: hmarr/debug-action@v2

checks:
name: Check
needs: [install]
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

debug:
name: Debug
runs-on: ubuntu-latest
steps:
- uses: hmarr/debug-action@v2

install:
name: Install
runs-on: ubuntu-latest
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,6 @@ on:
- 'v4.[0-9]+.[0-9]+-test.[0-9]+'

jobs:
debug:
name: Install
runs-on: ubuntu-latest
steps:
- uses: hmarr/debug-action@v2

install:
name: Install
runs-on: ubuntu-latest
Expand All @@ -32,6 +26,12 @@ jobs:
if: steps.cacheModules.outputs.cache-hit != 'true'
run: npm install

debug:
name: Debug
runs-on: ubuntu-latest
steps:
- uses: hmarr/debug-action@v2

checks:
name: Check
needs: [install]
Expand Down

0 comments on commit 7aacd14

Please sign in to comment.