chore(deps): bump express from 4.17.1 to 4.19.2 #25
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: Lint | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
env: | |
NODE_VERSION: 14.x | |
jobs: | |
run-linters: | |
name: Run linters | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
steps: | |
- name: Checkout GitHub Action | |
uses: actions/checkout@v2 | |
- name: Setup Node ${{ env.NODE_VERSION }} Environment | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Check Lint | |
shell: bash | |
run: | | |
yarn | |
yarn prettier --check . --ignore-unknown | |
yarn prettier-package-json --list-different package.json | |
yarn eslint src --ext .js | |
yarn markdownlint '**/*.md' --ignore node_modules | |
find . -name '*.json' -not -path './node_modules/*' -exec yarn jsonlint {} -q \; | |
yarn stylelint 'src/**/*.scss' --syntax=scss |