refactor: add eslint-plugin-import-x (#65)

- related to #29
This commit is contained in:
Marco Pasqualetti
2026-02-09 09:15:46 +01:00
committed by GitHub
parent 8bad081e79
commit 3fb7b37d75
103 changed files with 394 additions and 190 deletions
+8 -4
View File
@@ -97,15 +97,19 @@ jobs:
- name: Checkout code
uses: actions/checkout@v6
- name: Install Dependencies
uses: ./.github/actions/install-dependencies
# needed to resolve .vercel folder from apps/frontend/src/components/Card/SVG.js
# Heads up!
#
# 1. Execution of this script is needed to resolve `.vercel` folder from `apps/frontend/src/components/Card/SVG.js`
# 2. This scripts removes `apps/backend/node_modules` breaking ESLints module resolution.
# Dependency installation must occur after running ./vercel-preparation.sh.
- name: Run vercel-preparation.sh
run: |
chmod +x ./vercel-preparation.sh
./vercel-preparation.sh
- name: Install Dependencies
uses: ./.github/actions/install-dependencies
- name: Format
run: pnpm run format:check