Skip to content

fix: text postitioning wrt borders #42

fix: text postitioning wrt borders

fix: text postitioning wrt borders #42

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: "18.x"
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm test
- name: Check for Test Failures
run: |
if [ $? -eq 1 ]; then
echo "Tests failed. FIX."
exit 1
fi