Skip to content

Update document

Update document #33

Workflow file for this run

name: Linters Check
on:
pull_request:
branches: [ "public" ]
jobs:
linting:
name: Run linting rules
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Yarn Install
uses: borales/[email protected]
with:
cmd: install # will run `yarn install` command
- name: ESLint Check
uses: borales/[email protected]
with:
cmd: lint:eslint # will run `yarn lint:eslint` command
- name: Prettier Check
uses: borales/[email protected]
with:
cmd: lint:prettier # will run `yarn lint:prettier` command
- name: Markdownlint Check
uses: borales/[email protected]
with:
cmd: lint:markdownlint # will run `yarn lint:eslint` command