Skip to content

Ai game

Ai game #36

Workflow file for this run

name: validate
on:
push:
branches:
- "*"
pull_request:
branches:
- main
jobs:
check-formatting:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: yarn
- name: Install modules
run: yarn install --frozen-lockfile
- name: Check formatting
run: yarn format-check
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: yarn
- name: Install modules
run: yarn install --frozen-lockfile
- name: Run tests
run: yarn test