Update ManageCompetencyAssessment.cshtml #12089
Workflow file for this run
This file contains 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: Continuous Integration | |
on: | |
push: | |
branches-ignore: | |
- 'UAT' | |
- 'DEV' | |
jobs: | |
build: | |
name: Build and test | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET Core SDK 8.0 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Add TechnologyEnhancedLearning as nuget package source | |
run: dotnet nuget add source https://pkgs.dev.azure.com/e-LfH/_packaging/LearningHubFeed/nuget/v3/index.json --name TechnologyEnhancedLearning --username 'kevin.whittaker' --password ${{ secrets.AZURE_DEVOPS_PAT }} --store-password-in-clear-text | |
- name: Dotnet build | |
run: dotnet build DigitalLearningSolutions.sln | |
- name: Dotnet test | |
run: dotnet test DigitalLearningSolutions.Web.Tests | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Typescript install | |
run: yarn install --network-timeout 600000 --frozen-lockfile | |
working-directory: ./DigitalLearningSolutions.Web | |
- name: Typescript build | |
run: yarn build:webpack | |
working-directory: ./DigitalLearningSolutions.Web | |
- name: Typescript test | |
run: yarn test | |
working-directory: ./DigitalLearningSolutions.Web | |
- name: Typescript lint | |
run: yarn lint | |
working-directory: ./DigitalLearningSolutions.Web |