From 77ebdbe6f93e98a46a8926cc2f8a9bac6b83d3f7 Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 7 Aug 2023 12:27:02 +0530 Subject: [PATCH] ci: fix test versions (#1474) --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e5c442600..74b1b0d21 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -114,9 +114,17 @@ jobs: - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} + - uses: actions/setup-node@v3 + if: ${{ matrix.python-version == '3.10' }} + with: + node-version: 18 + + - uses: actions/setup-node@v3 + if: ${{ matrix.python-version == '3.7' }} with: node-version: 14 + - run: | wget https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox_0.12.6-1.focal_amd64.deb; sudo apt install ./wkhtmltox_0.12.6-1.focal_amd64.deb;