Skip to content

Dev/v32

Dev/v32 #245

Workflow file for this run

name: Check Linting has been applied
on:
pull_request:
types: [opened, synchronize, reopened, edited]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install dependencies
run: |-
npm install
- name: Run prettier
run: |-
npx prettier --config .prettierrc --check .
- name: Run eslint
run: |-
npm run eslint
- name: Run markdownlint
run: |-
npm run markdownlint