Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

feat: more leaderboards #17

feat: more leaderboards

feat: more leaderboards #17

Workflow file for this run

name: πŸ‘” Format
on: [push]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
format:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: βŽ” Setup node
uses: actions/setup-node@v4
with:
cache: npm
cache-dependency-path: ./package.json
node-version: 18
- name: πŸ“₯ Install deps
run: npm install
- name: πŸ‘” Format
run: npm run format
- name: πŸ’ͺ Commit
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add .
if [ -z "$(git status --porcelain)" ]; then
echo "πŸ’Ώ no formatting changed"
exit 0
fi
git commit -m "chore: format"
git push
echo "πŸ’Ώ pushed formatting changes https://github.com/$GITHUB_REPOSITORY/commit/$(git rev-parse HEAD)"