diff --git a/.gitea/workflows/python-package.yaml b/.gitea/workflows/python-package.yaml index edfb970..e0b1360 100644 --- a/.gitea/workflows/python-package.yaml +++ b/.gitea/workflows/python-package.yaml @@ -18,6 +18,8 @@ jobs: image: python:3 runs-on: ubuntu-latest steps: + - name: Install node + run: apt install node - name: Installing Python Dependencies run: python3 -m pip install --upgrade pip setuptools wheel build twine pytest - name: Check out repository code @@ -32,6 +34,8 @@ jobs: runs-on: ubuntu-latest needs: [test] steps: + - name: Install node + run: apt install node - name: Installing Python Dependencies run: python3 -m pip install --upgrade pip setuptools wheel build twine pytest - name: Check out repository code