Skip to content

Added tooltip components #99

Added tooltip components

Added tooltip components #99

Workflow file for this run

name: Pull Request Checks
on:
pull_request:
branches:
- main
jobs:
tests-and-file-checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: npm install
- name: Linting
run: npm run lint
- name: Project structure
run: npm run lint:structure
- name: Unit tests
run: npm run test:unit
- name: Build
run: npm run build