-
-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
79 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,15 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "composer" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
groups: | ||
dependencies: | ||
patterns: | ||
- "*" | ||
- package-ecosystem: "composer" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
groups: | ||
dependencies: | ||
patterns: | ||
- "*" | ||
|
||
- package-ecosystem: "github-actions" | ||
directory: ".github/workflows" | ||
schedule: | ||
interval: "weekly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,37 +24,44 @@ env: | |
|
||
jobs: | ||
check-markdown: | ||
name: "Lint Markdown" | ||
runs-on: "ubuntu-22.04" | ||
name: Lint Markdown | ||
runs-on: ubuntu-22.04 | ||
timeout-minutes: 1 | ||
steps: | ||
- | ||
name: "Checkout repository" | ||
uses: "actions/[email protected]" | ||
- | ||
name: "Check Markdown formatting" | ||
uses: "DavidAnson/[email protected]" | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Check Markdown formatting | ||
uses: DavidAnson/[email protected] | ||
with: | ||
globs: "**/*.md" | ||
globs: "*.md|docs/**/*.md" | ||
|
||
check-links: | ||
name: "Lint Links" | ||
runs-on: "ubuntu-22.04" | ||
name: Lint Links | ||
runs-on: ubuntu-22.04 | ||
timeout-minutes: 10 | ||
steps: | ||
- | ||
name: "Checkout repository" | ||
uses: "actions/[email protected]" | ||
- | ||
name: "Run Lychee" | ||
uses: "lycheeverse/[email protected]" | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Restore lychee cache | ||
uses: actions/cache@v3 | ||
with: | ||
path: .lycheecache | ||
key: cache-lychee-${{ github.sha }} | ||
restore-keys: cache-lychee- | ||
|
||
- name: Run Lychee | ||
uses: lycheeverse/[email protected] | ||
with: | ||
output: "${{ runner.temp }}/lychee/out.md" | ||
# To keep in sync with Makefile#lychee | ||
args: "--verbose --no-progress '*.md' 'docs/**/*.md' --cache --max-cache-age 1d ." | ||
output: ${{ runner.temp }}/lychee/out.md | ||
fail: true | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
name: Deploy website | ||
name: Build docs | ||
permissions: | ||
contents: write | ||
steps: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"MD007": false, | ||
"MD012": false, | ||
"MD013": false, | ||
"MD024": false, | ||
"MD029": false, | ||
"MD033": false, | ||
"MD034": false, | ||
"MD041": false, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters