This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
feat: more leaderboards #115
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ⚙️ Build | |
on: [push] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
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: 🏄 Copy test env vars | |
run: cp .env.example .env | |
- name: 📥 Install deps | |
run: npm install | |
- name: 🛠 Setup Database | |
run: npx prisma migrate reset --force | |
- name: ⚙️ Build | |
run: npm run build |