We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 894f15a + b9d671a commit b818feaCopy full SHA for b818fea
.github/workflows/build.yaml
@@ -42,10 +42,16 @@ jobs:
42
dotnet-version: 8
43
dotnet-quality: ga
44
45
- - name: Build
46
- run: |
47
- dotnet restore src/log4net.sln
48
- dotnet build src/log4net.sln
+ - name: Set up NodeJs
+ uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # 4.0.3
+ with:
+ node-version: 20
49
50
- - name: Test
51
- run: dotnet test src/log4net.sln
+ - name: Build and test
+ 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