From 935cf09971aa515c844d474e413b53e44ba3bf03 Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Thu, 19 Jan 2023 22:53:34 +0100 Subject: [PATCH] add node for doc testing --- .github/workflows/testing.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 7b8162b..5b5ae57 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -12,11 +12,16 @@ jobs: uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} + - name: Setup Node + uses: actions/setup-node@v1 + with: + node-version: '16' - name: Install dependencies run: | python -m pip install --upgrade pip pip install -r tests-requirements.txt pip install -r requirements.txt + npm install -g remark-cli remark-validate-links - name: Run sequential tests run: | ./tests.sh