diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a31f51355..efebd0626d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -97,6 +97,17 @@ jobs: - name: Checkout uses: actions/checkout@v3 + - name: Set up Python ${{ env.PYTHON_VERSION }} + uses: actions/setup-python@v4 + with: + python-version: "${{ env.PYTHON_VERSION }}" + + - name: Upgrade pip + run: pip install --upgrade pip + + - name: Install cairosvg dependency + run: pip install cairosvg + - name: Set up NodeJS ${{ env.NODE_VERSION }} uses: actions/setup-node@v3 with: