Skip to content

wiiitek/timeismoney

Repository files navigation

timeismoney

Parallel build sonarcloud.io Known Vulnerabilities

Please use NodeJS version hydrogen (24.x).

Resources

  1. GitHub projects with split-flap (Solari) boards:
  2. Split-flap display (Wikipedia)

Running Sonar analysis

To manually run Sonar analysis run export SONAR_TOKEN=<sonar token> for Sonar credentials and then npm run sonar.

How to delete old GitHub workflow runs

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