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

Leaderboard and Freighter API integration #292

Leaderboard and Freighter API integration

Leaderboard and Freighter API integration #292

Workflow file for this run

name: Format MDX and Lint
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout App Repo
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: "18"
cache: "npm"
cache-dependency-path: "**/package-lock.json"
- name: Install App Dependencies
run: npm install
- name: Check MDX
run: npm run check:mdx
- name: Build app
run: npm run build