Skip to content

feat: revamp of the repo, add turbo, add generic Icon elem #1

feat: revamp of the repo, add turbo, add generic Icon elem

feat: revamp of the repo, add turbo, add generic Icon elem #1

Workflow file for this run

name: Verify changes
on: pull_request
jobs:
verify:
name: Verify changes
runs-on: ubuntu-latest
steps:
- name: Set git to use LF
run: |
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v4
- name: Setup Node 22
uses: actions/setup-node@v4
with:
node-version: 22.x
cache: "npm"
- name: Install Dependencies
run: npm ci
- name: Linting & Formatting
run: npm run lint