Skip to content

Commit

Permalink
chore: Add debug logging to the build pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
prantlf committed Dec 12, 2023
1 parent 250c3b4 commit 6fd9bbc
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,14 @@ jobs:
cache: 'pnpm'
- name: Install Dependencies
run: pnpm i --frozen-lockfile --no-verify-store-integrity
env:
DEBUG: linkbe,grabghr
- name: Test
run: |
node_modules/.bin/newchanges -V
node_modules/.bin/newchanges -V
env:
DEBUG: linkbe,grabghr

windows:
runs-on: windows-latest
Expand All @@ -51,17 +55,21 @@ jobs:
- name: Install Dependencies
run: pnpm i --frozen-lockfile --no-verify-store-integrity
env:
DEBUG: '*'
DEBUG: linkbe,grabghr
- name: Test CMD
shell: cmd
run: |
node_modules\.bin\newchanges -V
node_modules\.bin\newchanges -V
env:
DEBUG: linkbe,grabghr
- name: Test PowerShell
shell: pwsh
run: |
.\node_modules\.bin\newchanges -V
.\node_modules\.bin\newchanges -V
env:
DEBUG: linkbe,grabghr

linux-and-release:
needs:
Expand All @@ -83,10 +91,14 @@ jobs:
registry-url: 'https://registry.npmjs.org'
- name: Install Dependencies
run: pnpm i --frozen-lockfile --no-verify-store-integrity
env:
DEBUG: linkbe,grabghr
- name: Test
run: |
node_modules/.bin/newchanges -V
node_modules/.bin/newchanges -V
env:
DEBUG: linkbe,grabghr
- name: Publish
if: ${{ github.ref_name == 'master' }}
uses: cycjimmy/semantic-release-action@v4
Expand Down

0 comments on commit 6fd9bbc

Please sign in to comment.