Skip to content

feat: win probability overlay #569

feat: win probability overlay

feat: win probability overlay #569

Workflow file for this run

name: Continuous Integration
# This action works with pull requests and pushes
on:
pull_request:
push:
branches:
- master
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4.0.1
with:
node-version: 18
# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies
run: yarn install --immutable
- name: Run linters
uses: wearerequired/lint-action@v2
with:
eslint: false
prettier: true