forked from simpleangularcontrols/simpleangularcontrols
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Phliipp Jenni
committed
Jan 13, 2024
1 parent
20ae6ff
commit c3c0893
Showing
4 changed files
with
56 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# This workflow will build a .NET project | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net | ||
|
||
name: Run Cypress Tests | ||
|
||
on: | ||
push: | ||
branches-ignore: ["agnular/*"] | ||
pull_request: | ||
branches: ["agnular/*"] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Get Source | ||
uses: actions/checkout@v3 | ||
|
||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v3 | ||
with: | ||
dotnet-version: 3.1.x | ||
|
||
- name: Build | ||
run: dotnet run --project build/Build.csproj --target=build |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using Build.context; | ||
using Build.tasks; | ||
using Cake.Core.Diagnostics; | ||
using Cake.Frosting; | ||
|
||
namespace Build.pipelines | ||
{ | ||
/// <summary> | ||
/// Build Only Pipeline | ||
/// </summary> | ||
[TaskName("build")] | ||
[TaskDescription("Build Task without publishing")] | ||
[IsDependentOn(typeof(NpmBuild))] | ||
public class BuildBuild : FrostingTask<BuildContext> | ||
{ | ||
/// <summary> | ||
/// Main Task | ||
/// </summary> | ||
/// <param name="context"></param> | ||
|
||
public override void Run(BuildContext context) | ||
{ | ||
base.Run(context); | ||
|
||
context.Log.Information("Task done"); | ||
} | ||
} | ||
} |
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