Skip to content

Bump braces from 3.0.2 to 3.0.3 #143

Bump braces from 3.0.2 to 3.0.3

Bump braces from 3.0.2 to 3.0.3 #143

name: Quality checks
on: [ push ]
jobs:
validate-shell:
name: Validate shell
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Install ShellCheck
run: sudo apt-get update -y && sudo apt-get install -y shellcheck
-
name: Lint shell scripts
run: find . -name "*.sh" | xargs shellcheck --external-sources --source-path=SCRIPTDIR
lint:
name: Validate markdown & yaml files
runs-on: ubuntu-latest
strategy:
matrix:
lint-command:
- npm run lint:yaml
- npm run lint:md:relative-urls
- npm run lint:md
- 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 }}