File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed
Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -20,3 +20,16 @@ When implemented, this will likely be a GitHub Action with:
2020- CI/CD workflows in ` .github/workflows/ `
2121- Documentation in ` README.md ` files
2222- Linting with ESLint and Prettier
23+
24+ ## Pull Request Workflow
25+
26+ When raising a PR, follow these steps to ensure the "check dist is up to date" build step passes:
27+
28+ 1 . Fetch latest changes: ` git fetch `
29+ 2 . Rebase on main: ` git rebase origin/main `
30+ 3 . Install dependencies: ` yarn install `
31+ 4 . Build the distribution: ` yarn build `
32+ 5 . Commit the changes to ` dist/ ` if any files were updated
33+ 6 . Push the branch and create the PR
34+
35+ This ensures the built distribution files in ` dist/ ` are always up to date with the source code.
You can’t perform that action at this time.
0 commit comments