Skip to content

Commit b818fea

Browse files
author
Git Broadcast
committed
Merge remote-tracking branch 'origin/master' into Feature/173-Dropping-legacy-serialization-support
2 parents 894f15a + b9d671a commit b818fea

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

.github/workflows/build.yaml

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,16 @@ jobs:
4242
dotnet-version: 8
4343
dotnet-quality: ga
4444

45-
- name: Build
46-
run: |
47-
dotnet restore src/log4net.sln
48-
dotnet build src/log4net.sln
45+
- name: Set up NodeJs
46+
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # 4.0.3
47+
with:
48+
node-version: 20
4949

50-
- name: Test
51-
run: dotnet test src/log4net.sln
50+
- name: Build and test
51+
env:
52+
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
53+
DOTNET_CLIE_TELEMETRY_OPTOUT: 1
54+
run: |
55+
npm update -g npm --no-progress
56+
npm install --no-progress
57+
npm test

0 commit comments

Comments
 (0)