Skip to content

Commit

Permalink
Tolerate docs failures
Browse files Browse the repository at this point in the history
This way, pull requests are no longer blocked by MithrilJS#2898
  • Loading branch information
dead-claudia committed Sep 23, 2024
1 parent 5351b9b commit 2b687a3
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/lint-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 2b687a3

Please sign in to comment.