Added github actions + VSCode settings

- Check and validate links every day at 12
- Added my VSCode settings
This commit is contained in:
CHEF-KOCH 2020-03-30 10:59:31 +02:00
parent d7f7599396
commit bb355e60ee
No known key found for this signature in database
GPG Key ID: 40BB608CE79750B2
2 changed files with 26 additions and 0 deletions

17
.github/workflows/validate.yml vendored Normal file
View File

@ -0,0 +1,17 @@
on:
push:
branches:
- master
schedule:
- cron: 0 12 * * 0-5
jobs:
build:
name: Validate links
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Validate links
uses: ad-m/report-link-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

9
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,9 @@
{
"markdownlint.config": {
"default": true,
"MD022": false,
"MD024": false,
"MD033": { "allowed_elements": ["a", "b", "br", "p", "img"] },
"MD036": false
}
}