27 lines
578 B
YAML
27 lines
578 B
YAML
name: Quality checks
|
|
|
|
on: push
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
lint-command:
|
|
- npm run lint:vue
|
|
- npm run lint:yaml
|
|
- npm run lint:md
|
|
- npm run lint:md:relative-urls
|
|
- npm run lint:md:consistency
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Setup node
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 14.x
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
- name: Lint
|
|
run: ${{ matrix.lint-command }}
|