-
Notifications
You must be signed in to change notification settings - Fork 0
How to Test Version Change
Wesley B edited this page Jul 23, 2022
·
2 revisions
- See how many stylesheets are built on
main
branch:git checkout main
npm ci
npm run build
find dist -type f | wc -l
- Clear CSS build output:
rm -rf dist
- See how many stylesheets are built on the branch to test:
git checkout the/branch-to-test
npm ci
-
npm run build
— ❗️ verify no error occurs find dist -type f | wc -l
- Verify change expected by relevant PR or test goal, e.g.
- equal count files as before (if none were to change)
- fewer files than before (if some were removed)
- more files than before (if some were added)