Add scripts to disable News and Interests $86 #933
Workflow file for this run
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
name: Quality checks | |
on: [ push, pull_request ] | |
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 | |
fail-fast: false # So it continues with other commands if one fails | |
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 }} |