From 1ae5b2c58b306e1d93546c27fe0f06bbe6340a98 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Tue, 28 Mar 2023 11:27:28 +0100 Subject: [PATCH] ci: run docs linting step on node 18 --- .github/workflows/docs.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index d9213610e7..69d21567cb 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -16,19 +16,14 @@ on: jobs: lint-docs: - runs-on: ${{ matrix.os }} - - strategy: - matrix: - os: [ubuntu-latest] - node: [14] + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - run: corepack enable - uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node }} + node-version: 18 cache: "pnpm" - name: Install dependencies