Skip to content

fix: playoff record for live games #99

fix: playoff record for live games

fix: playoff record for live games #99

Workflow file for this run

name: ci
on:
pull_request:
push:
branches:
- "main"
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
- name: Install dependencies
run: npm ci --ignore-scripts
- name: Run Typecheck
run: npm run typecheck
- name: Run Linting
run: npm run lint
- name: Run Testing
run: npm run test:ci