From 2b687a31ea549de6c5af4558d8ebde6b50ab62c3 Mon Sep 17 00:00:00 2001 From: Claudia Meadows Date: Sun, 25 Aug 2024 10:27:52 -0700 Subject: [PATCH] Tolerate docs failures This way, pull requests are no longer blocked by https://github.com/MithrilJS/mithril.js/issues/2898 --- .github/workflows/lint-docs.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/lint-docs.yml b/.github/workflows/lint-docs.yml index b4caf303b..52f3a0eef 100644 --- a/.github/workflows/lint-docs.yml +++ b/.github/workflows/lint-docs.yml @@ -11,20 +11,17 @@ on: jobs: lint-docs: + # https://github.com/MithrilJS/mithril.js/issues/2898 + continue-on-error: true runs-on: ubuntu-latest - strategy: - matrix: - node-version: [18] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - steps: - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + - uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: 20 cache: 'npm' - run: npm ci - run: npm run lint:docs