Skip to content

Commit 7c63205

Browse files
authored
Tolerate docs failures
This way, pull requests are no longer blocked by MithrilJS/mithril.js#2898
1 parent c3b4b51 commit 7c63205

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

workflows/lint-docs.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,17 @@ on:
1111

1212
jobs:
1313
lint-docs:
14+
# https://github.com/MithrilJS/mithril.js/issues/2898
15+
continue-on-error: true
1416

1517
runs-on: ubuntu-latest
1618

17-
strategy:
18-
matrix:
19-
node-version: [18]
20-
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
21-
2219
steps:
2320
- uses: actions/checkout@v3
24-
- name: Use Node.js ${{ matrix.node-version }}
25-
uses: actions/setup-node@v3
21+
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
22+
- uses: actions/setup-node@v3
2623
with:
27-
node-version: ${{ matrix.node-version }}
24+
node-version: 20
2825
cache: 'npm'
2926
- run: npm ci
3027
- run: npm run lint:docs

0 commit comments

Comments
 (0)