-
Notifications
You must be signed in to change notification settings - Fork 1
Update CI/CD workflows for improved build and test processes #13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -7,6 +7,9 @@ on: | |||||||||
| branches: | ||||||||||
| - main | ||||||||||
| - master | ||||||||||
| pull_request: | ||||||||||
| branches: | ||||||||||
| - main | ||||||||||
| # allow manual triggers for now too | ||||||||||
| workflow_dispatch: | ||||||||||
|
|
||||||||||
|
|
@@ -29,17 +32,6 @@ jobs: | |||||||||
| - name: Build project | ||||||||||
| run: dotnet build --no-restore | ||||||||||
|
|
||||||||||
|
||||||||||
| - name: Run Playwright tests | |
| run: dotnet test test/Chirp.Web.Playwright.Test/Chirp.Web.Playwright.Test.csproj --no-build |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pull_request trigger is incorrectly placed inside the push trigger block. This will cause a YAML syntax error. The pull_request trigger should be at the same indentation level as the push trigger, not nested within it.