Skip to content

Commit

Permalink
🧪 Create a meta-integration test (#258)
Browse files Browse the repository at this point in the history
* Create meta-test.yml

* Update meta-test.yml
  • Loading branch information
Hona committed Mar 25, 2024
1 parent 6cf7245 commit 2f92161
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions .github/workflows/meta-test.yml
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

0 comments on commit 2f92161

Please sign in to comment.