Remove unused fronend dependencies #47
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: Ionos Dev Frontend CI | |
| on: | |
| pull_request: | |
| branches: | |
| - ionos-dev | |
| paths-ignore: | |
| - 'backend/**' | |
| - 'pyproject.toml' | |
| - 'uv.lock' | |
| - '*.md' | |
| - 'docs/**' | |
| jobs: | |
| lint-format-test: | |
| name: 'Lint, Format & Test Frontend' | |
| runs-on: self-hosted | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '22' | |
| cache: 'npm' | |
| - name: Install Dependencies | |
| run: npm ci | |
| - name: Check IONOS Directory Linting | |
| run: npm run lint:ionos | |
| continue-on-error: true | |
| - name: Check IONOS Directory Formatting | |
| run: npm run format:check:ionos | |
| continue-on-error: true | |
| - name: Run Frontend Unit Tests | |
| run: npm run test:frontend |