-
Notifications
You must be signed in to change notification settings - Fork 19
Run GitHub test actions on contributor forks. #325
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
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # Run tests on pushes to main branch. | ||
| name: Check Main | ||
| on: | ||
| push: | ||
| branches: [main] | ||
| jobs: | ||
| test: | ||
| uses: ./.github/workflows/test.yaml | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| # Run tests on pull requests, including from forks. | ||
| name: Check Pull Request | ||
| on: | ||
| pull_request | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. By default GitHub will target the |
||
| jobs: | ||
| test: | ||
| uses: ./.github/workflows/test.yaml | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -808,7 +808,7 @@ class TemplateEngine { | |
| // } | ||
| // } | ||
| static #removeWithin(node) { | ||
| node.replaceChildren() | ||
| node.replaceChildren(); | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was what caused the |
||
| } | ||
|
|
||
| // TODO: Future state — we may choose to iterate differently as an | ||
|
|
||
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.
Continue to run tests on
main(e.g., after a PR is merged) as a sanity check.