Skip to content

Changed to a more readable asciiart #15

Changed to a more readable asciiart

Changed to a more readable asciiart #15

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