From efaf1abfb1923fe3f5d799ecb13e2dc92becc318 Mon Sep 17 00:00:00 2001 From: Freddy Heppell Date: Fri, 13 Oct 2023 16:46:25 +0100 Subject: [PATCH] Remove node from CI --- .github/workflows/lint.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 137003e..7d0364f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -20,20 +20,13 @@ jobs: with: python-version: "3.8" cache: "pipenv" - - uses: actions/setup-node@v3 - with: - node-version: 16 - name: Install Pipenv run: python -m pip install --upgrade pipenv wheel - name: Install Python dependencies run: pipenv install --deploy --dev - - name: Install Node dependencies - run: npm ci - name: Lint with Black run: pipenv run black --check . - name: Lint with Flake8 run: pipenv run flake8 . - - name: Lint with Prettier - run: npx prettier --check . - name: Tests run: pipenv run pytest