Skip to content

As Gilbert, I want to see a more realistic representation of connect 4 game #19

As Gilbert, I want to see a more realistic representation of connect 4 game

As Gilbert, I want to see a more realistic representation of connect 4 game #19

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
- name: Install dependencies
run: npm install
- name: Check TypeScript types
run: npx tsc --noEmit
- name: Run tests
run: npm test