Many steps for verifying changes to a site can be rolled into a CI pipeline to partially automate the process of testing and releasing new changes. GitHub does this with GitHub Actions, a collection of components that developers can hook into to automatically test and build project artifacts (in this case, a website) when the project is modified.
To address this issue, add content within the .github/workflows directory that runs project tests when a PR is opened or when new commits are pushed to its corresponding branch. This issue depends on #16.
Many steps for verifying changes to a site can be rolled into a CI pipeline to partially automate the process of testing and releasing new changes. GitHub does this with GitHub Actions, a collection of components that developers can hook into to automatically test and build project artifacts (in this case, a website) when the project is modified.
To address this issue, add content within the
.github/workflowsdirectory that runs project tests when a PR is opened or when new commits are pushed to its corresponding branch. This issue depends on #16.