diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index dfbe0d5..db8c759 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -15,6 +15,10 @@ jobs: uses: actions/setup-dotnet@v1 with: dotnet-version: '8.0.100' + - name: Set Node.js 16.x + uses: actions/setup-node@v3 + with: + node-version: 20.x - name: Restore .NET tools run: dotnet tool restore - name: Restore dependencies diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 992b8bf..6b0d68c 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -15,6 +15,10 @@ jobs: uses: actions/setup-dotnet@v1 with: dotnet-version: '8.0.100' + - name: Set Node.js 16.x + uses: actions/setup-node@v3 + with: + node-version: 20.x - name: Restore .NET tools run: dotnet tool restore - name: Restore dependencies