Skip to content

Feature/f 68 check and replace tooltips (#32) #137

Feature/f 68 check and replace tooltips (#32)

Feature/f 68 check and replace tooltips (#32) #137

Workflow file for this run

name: Lint and Format Check
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint-and-format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: yarn
- name: Run ESLint
run: yarn lint
- name: Run Prettier
run: yarn format