Bump Microsoft.NET.Test.Sdk from 17.14.1 to 18.9.0 #520
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: [v6] | |
| pull_request: | |
| branches: [v6] | |
| workflow_dispatch: | |
| jobs: | |
| build-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Install .NET SDK | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: "8.0.x" # latest LTS build | |
| - name: Install npm dependencies | |
| run: npm ci | |
| - name: Node Build | |
| env: | |
| FIGMA_ACCESS_TOKEN: ${{ secrets.FIGMA_ACCESS_TOKEN }} | |
| run: npm run build | |
| - name: Run linters | |
| run: npm run lint | |
| - name: Validate V6 release policy | |
| run: npm run test:release | |
| - name: Validate documentation site | |
| run: npm run test:site | |
| - name: .NET Build | |
| run: npm run build:nuget | |
| - name: .NET test | |
| run: npm run test:nuget |