feat: revamp of the repo, add turbo, add generic Icon elem #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |