From 6d178907d6edab7babe7589df1d8c467d8a91014 Mon Sep 17 00:00:00 2001 From: Lukas Barragan Torres Date: Mon, 26 Feb 2024 21:13:46 +0100 Subject: [PATCH] try gh action without node dependency --- .github/workflows/backend.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/backend.yml b/.github/workflows/backend.yml index c0982728..6666f63f 100644 --- a/.github/workflows/backend.yml +++ b/.github/workflows/backend.yml @@ -11,13 +11,7 @@ jobs: python-version: '3.12' - name: Install dependencies run: pip install -r backend/requirements.txt - - name: Set up Node - uses: actions/setup-node@v2 - with: - node-version: '14' - - name: Install Pyright - run: npm install -g pyright - - name: Run Pyright - run: pyright - name: Lint code run: ruff check backend + - name: Run Pyright + run: pyright