Skip to content

Commit

Permalink
Add logging of requested .net and node versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ZKRobi authored and kruplm committed Mar 26, 2024
1 parent b524a62 commit 3049caf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@ jobs:
dotnet-version: [ '${{ vars.DOTNET_VERSION }}' ]
node-version: [ '${{ vars.NODE_VERSION }}' ]
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- name: Checkout
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2

- run: echo Calling setup-node with node-version ${{ vars.NODE_VERSION }}

- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
Expand All @@ -43,6 +46,8 @@ jobs:
- name: Test JavaScript
run: npx lerna run test

- run: echo Calling setup-dotnet with dotnet-version ${{ vars.DOTNET_VERSION }}

- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4.0.0
with:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:
permissions:
id-token: write
steps:
- run: echo Calling setup-node with node-version ${{ vars.NODE_VERSION }}
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
Expand All @@ -76,6 +77,7 @@ jobs:
with:
name: packages
path: ./packages
- run: echo Calling setup-dotnet with dotnet-version ${{ vars.DOTNET_VERSION }}
- uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4.0.0
with:
dotnet-version: ${{ vars.DOTNET_VERSION }}
Expand Down

0 comments on commit 3049caf

Please sign in to comment.