Skip to content

Update top-scores.vue #798

Update top-scores.vue

Update top-scores.vue #798

Workflow file for this run

name: ci
on:
push:
branches:
- develop
- rc
- stable
pull_request:
branches:
- develop
- rc
- stable
workflow_dispatch:
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [18]
steps:
- name: Checkout 🛎
uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 7
- name: Setup node env 🏗
uses: actions/setup-node@v3
id: setup_node_id
with:
node-version: ${{ matrix.node }}
check-latest: true
cache: pnpm
- name: preparing configs ⏚
run: cp guccho.ui.config.example.ts guccho.ui.config.ts && cp guccho.backend.config.example.ts guccho.backend.config.ts && cp .env.example .env
- name: install dependencies 🎁
run: pnpm install
- name: type check ⚙️
run: pnpm typecheck
- name: Run linter 👀
run: pnpm lint
- name: Test build 👀
run: pnpm build