From 17d31dbe178db27fe3d2767b359c487349108b3e Mon Sep 17 00:00:00 2001 From: gerwoud Date: Thu, 14 Mar 2024 17:39:20 +0100 Subject: [PATCH] removed unused code parts --- .github/workflows/ci-linter-backend.yaml | 4 ---- .github/workflows/ci-linter-frontend.yaml | 12 ------------ 2 files changed, 16 deletions(-) diff --git a/.github/workflows/ci-linter-backend.yaml b/.github/workflows/ci-linter-backend.yaml index 2b52c0ea..ae449a19 100644 --- a/.github/workflows/ci-linter-backend.yaml +++ b/.github/workflows/ci-linter-backend.yaml @@ -13,10 +13,6 @@ jobs: python-version: '3.x' cache: 'pip' - - name: Install dependencies - working-directory: ./backend - run: pip3 install -r requirements.txt && pip3 install -r dev-requirements.txt - - name: Run linting working-directory: ./backend run: find . -type f -name "*.py" | xargs pylint \ No newline at end of file diff --git a/.github/workflows/ci-linter-frontend.yaml b/.github/workflows/ci-linter-frontend.yaml index 5b27b9ab..1e3d8708 100644 --- a/.github/workflows/ci-linter-frontend.yaml +++ b/.github/workflows/ci-linter-frontend.yaml @@ -16,18 +16,6 @@ jobs: path: ~/.npm key: npm-${{ hashFiles('package-lock.json') }} restore-keys: npm- - - - name: Install dependencies - working-directory: ./frontend - run: npm ci - - - name: Build - working-directory: ./frontend - run: npm run build - - - name: Preview Web App - working-directory: ./frontend - run: npm run preview & - name: Run linting working-directory: ./frontend