From ba286e1fdf1f5226238924f42338b5caeb80a2f7 Mon Sep 17 00:00:00 2001 From: dvolper Date: Wed, 27 Sep 2023 15:12:38 +0200 Subject: [PATCH] ci & cd (install .net 6 & 7) --- .github/workflows/ci.yml | 5 ++++- .github/workflows/nuget-cd.yml | 4 +++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d31fef50..c602f614 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,6 +9,7 @@ on: env: DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true DOTNET_CLI_TELEMETRY_OPTOUT: true + NODE_ENV: development jobs: Test: @@ -17,7 +18,9 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: | + 6.0.x + 7.0.x - uses: actions/setup-node@v3 with: node-version: 18.x diff --git a/.github/workflows/nuget-cd.yml b/.github/workflows/nuget-cd.yml index 8f654505..3cb16178 100644 --- a/.github/workflows/nuget-cd.yml +++ b/.github/workflows/nuget-cd.yml @@ -19,7 +19,9 @@ jobs: fetch-depth: 0 - uses: actions/setup-dotnet@v3 with: - dotnet-version: 7.0.x + dotnet-version: | + 6.0.x + 7.0.x - uses: actions/setup-node@v3 with: node-version: 18.x