1
0
mirror of https://github.com/corona-warn-app/cwa-documentation synced 2024-05-29 04:48:03 +02:00
cwa-documentation/.github/workflows/checks.yml

41 lines
864 B
YAML
Raw Normal View History

name: Checks
on: pull_request
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Install requirements
run: |
sudo apt install -y automake npm nodejs
- name: Checkout code
2022-10-27 08:11:04 +02:00
uses: actions/checkout@v3
2022-01-08 12:28:48 +01:00
- name: Setup Node.js environment (v16)
2022-10-27 08:11:04 +02:00
uses: actions/setup-node@v3
with:
2022-01-08 12:28:48 +01:00
node-version: 'lts/gallium'
- name: Install npm dependencies
if: always()
run: |
npm install
- name: Linting markdown
if: always()
run: |
npm run-script markdownlint
- name: Checking for broken links
if: always()
run: |
npm run-script checklinks
#- name: Detect inconsiderate language
# if: always()
# run: |
# npm run-script detect-inconsiderate-language