Please use NodeJS version hydrogen (24.x).
- GitHub projects with split-flap (Solari) boards:
- Split-flap display (Wikipedia)
To manually run Sonar analysis run export SONAR_TOKEN=<sonar token> for Sonar credentials and then npm run sonar.
With help of GitHub client:
gh api '/repos/wiiitek/timeismoney/actions/workflows/parallel-build.yml/runs?per_page=50' --paginate \
| jq -r '.workflow_runs[].id' > all-actions.txt
cat all-actions.txt \
| while IFS= read -r RUN_ID; do
echo "🗑️ Deleting workflow run $RUN_ID"
gh api --silent -X DELETE "repos/wiiitek/timeismoney/actions/runs/$RUN_ID"
done