Skip to content

Added leaderboard

Added leaderboard #152

Workflow file for this run

name: Check Formatting
on:
push:
branches:
- main
pull_request:
workflow_call:
workflow_dispatch:
jobs:
check_formatting:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: "20"
- name: Install dependencies
run: npm install
- name: Check formatting
run: npm run prettier-check