git clone https://github.com/ernestdefoe/espn-cfb-ticker.git
cd espn-cfb-tickerUnzip espn-cfb-ticker.zip and copy everything into your cloned folder,
replacing the LICENSE file if prompted (the zip includes it).
# From the folder where you unzipped:
cp -r espn-cfb-ticker/. /path/to/your/cloned/espn-cfb-ticker/cd /path/to/your/cloned/espn-cfb-ticker
git add -A
git commit -m "feat: initial Flarum 2 ESPN CFB Ticker extension"
git push origin mainGitHub Actions will trigger .github/workflows/build.yml which:
- Installs npm dependencies (
flarum-webpack-config, etc.) - Runs
npm run buildto produce realjs/dist/forum.jsandjs/dist/admin.js - Auto-commits the built files back to
mainwith the messagechore: build JS assets [skip ci]
You can watch it run at: https://github.com/ernestdefoe/espn-cfb-ticker/actions
The whole process takes about 60–90 seconds.
Your repo will have real compiled JS in js/dist/. From that point on,
any time you edit js/src/** and push to main, CI rebuilds automatically.