Skip to content

add box drawing (pipe) #5

add box drawing (pipe)

add box drawing (pipe) #5

Workflow file for this run

name: "Run vitest tests"
on:
pull_request:
branches: ['main']
push:
branches: ['main']
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Test (vitest)
run: npm run test