Skip to content

Commit a586db5

Browse files
authored
Merge pull request #33 from Ceichert31/actions/write-permissions
Actions/write permissions
2 parents 501c6f9 + e8a63d0 commit a586db5

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/dotnet.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Setup Node.js
3030
uses: actions/setup-node@v4
3131
with:
32-
node-version: '20'
32+
node-version: '24'
3333

3434
- name: Semantic Version
3535
id: semantic
@@ -70,8 +70,10 @@ jobs:
7070
- name: Build
7171
run: dotnet build ${{ env.SOLUTION_PATH }} --no-restore
7272

73+
# Fix later to run test on ubuntu
7374
- name: Test
7475
run: dotnet test --no-build --verbosity normal ${{ env.SOLUTION_PATH }}
76+
if: matrix.os == 'windows-latest'
7577
env:
7678
GIT_TEST_TOKEN: ${{ secrets.GIT_TEST_TOKEN }}
7779
GIT_TEST_USERNAME: ${{ secrets.GIT_TEST_USERNAME }}

0 commit comments

Comments
 (0)