Skip to content

Display sync track button on official map leaderboards #509

Display sync track button on official map leaderboards

Display sync track button on official map leaderboards #509

Workflow file for this run

name: Code Quality
on:
pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- name: Setup Node.js 18
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Formatting Checks
run: npm run format:check
- name: Linting Checks
run: npm run lint:check
- name: TypeScript Build
run: npm run ts:check