Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/publishGithubPages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,23 @@ jobs:
with:
dotnet-version: '10.x'

- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: '20.x'

- name: Install npm dependencies
run: npm ci
working-directory: src/DirectiveAthena.Website.ClientAssets

- name: Build interop bundle
run: npm run build
working-directory: src/DirectiveAthena.Website.ClientAssets

- name: Run TypeScript unit tests
run: npm run test:ts
working-directory: src/DirectiveAthena.Website.ClientAssets

- name: Restore dependencies
run: dotnet restore DirectiveAthena.Website.slnx

Expand Down
17 changes: 17 additions & 0 deletions .github/workflows/pullRequestTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,23 @@ jobs:
with:
dotnet-version: '10.x'

- name: Setup Node
uses: actions/setup-node@v6
with:
node-version: '20.x'

- name: Install npm dependencies
run: npm ci
working-directory: src/DirectiveAthena.Website.ClientAssets

- name: Build interop bundle
run: npm run build
working-directory: src/DirectiveAthena.Website.ClientAssets

- name: Run TypeScript unit tests
run: npm run test:ts
working-directory: src/DirectiveAthena.Website.ClientAssets

- name: Restore dependencies
run: dotnet restore DirectiveAthena.Website.slnx

Expand Down
1 change: 1 addition & 0 deletions DirectiveAthena.Website.slnx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<File Path=".github/workflows/pullRequestTests.yml" />
</Folder>
<Folder Name="/src/">
<Project Path="src/DirectiveAthena.Website.ClientAssets/DirectiveAthena.Website.ClientAssets.csproj" />
<Project Path="src/DirectiveAthena.Website.Services/DirectiveAthena.Website.Services.csproj" />
<Project Path="src/DirectiveAthena.Website.Shared/DirectiveAthena.Website.Shared.csproj" />
<Project Path="src/DirectiveAthena.Website/DirectiveAthena.Website.csproj" />
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>

</Project>
Loading