From 3049cafdbb7b429d53c81ba74960ffccee2814bd Mon Sep 17 00:00:00 2001 From: Robert Zoldi-Kovacs <13298643+ZKRobi@users.noreply.github.com> Date: Wed, 20 Mar 2024 17:33:38 +0100 Subject: [PATCH] Add logging of requested .net and node versions --- .github/workflows/continuous-integration.yml | 7 ++++++- .github/workflows/release.yml | 2 ++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 030f9c400..530361442 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -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: @@ -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: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 700214fc8..810394d70 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: @@ -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 }}