From 5558165f624e4b1c04cde5d1f42558ec6a16d69c Mon Sep 17 00:00:00 2001 From: Furkan Torun Date: Sat, 7 Sep 2024 02:45:38 +0200 Subject: [PATCH] Fix CI file path --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e08543e..d5ac859 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,14 +52,14 @@ jobs: bandit --recursive . --exit-zero - name: Run safety for security checks for packages run: | - safety check -r requirements.txt + safety check -r api/requirements.txt safety check # Install Node.js for Prettier on HTML, CSS, and JavaScript - name: Set up Node.js for formatting & linting uses: actions/setup-node@v3 with: - node-version: '14' # Use Node.js 14.x + node-version: '14' - name: Check formatting with Prettier run: |