-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🧪 Create a meta-integration test (#258)
* Create meta-test.yml * Update meta-test.yml
- Loading branch information
Showing
1 changed file
with
72 additions
and
0 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,72 @@ | ||
name: Meta Test | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
build: | ||
name: "Build" | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: ~/.nuget/packages | ||
key: ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-nuget- | ||
- name: Setup .NET | ||
uses: actions/setup-dotnet@v3 | ||
|
||
# Tests that the dotnet new template is valid | ||
- name: Install | ||
run: dotnet new install . | ||
|
||
# Tests that the template follows the parent structure | ||
# Tests that the dotnet new command works 'hona-vsa' | ||
- name: Create new Project | ||
run: | | ||
mkdir -p ./temp/MyTestApp | ||
cd ./temp/MyTestApp | ||
dotnet new ssw-ca | ||
# Tests that a fresh project can be built (in debug mode) | ||
- name: Build fresh Project | ||
run: | | ||
cd ./temp/MyTestApp | ||
dotnet build --configuration Debug | ||
# Tests that a query can be generated | ||
- name: Create a query | ||
run: | | ||
cd src/Application/Features | ||
mkdir Products | ||
cd Products | ||
dotnet new ssw-ca-query --name GetProducts --entityName Product --slnName MyTestApp | ||
# Tests that a query leaves the app in a buildable state | ||
- name: Build after a query | ||
run: | | ||
cd ./temp/MyTestApp | ||
dotnet build --configuration Release | ||
# Tests that a command can be generated | ||
- name: Create a command | ||
run: | | ||
cd src/Application/Features | ||
cd Products | ||
dotnet new ssw-ca-command --name CreateProduct --entityName Product --slnName MyTestApp | ||
# Tests that a command leaves the app in a buildable state | ||
- name: Build after a command | ||
run: | | ||
cd ./temp/MyTestApp | ||
dotnet build --configuration Release |