diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eaf64861..647c7973 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,10 +27,16 @@ jobs: with: python-version: ${{ matrix.python-version }} + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version: 22 + - name: Update pip and install dev requirements run: | python -m pip install --upgrade pip pip install nox + - name: Test run: nox -s tests-${{ matrix.python-version }}