element-call/.github/workflows/lint.yaml

21 lines
463 B
YAML
Raw Normal View History

2022-05-03 14:32:16 +00:00
name: Lint and format
on:
pull_request: {}
jobs:
prettier:
2022-05-03 14:32:16 +00:00
name: Lint and format
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Yarn cache
uses: actions/setup-node@v3
with:
cache: 'yarn'
- name: Install dependencies
run: "yarn install"
2022-05-03 14:32:16 +00:00
- name: Prettier
run: "yarn run prettier:check"
2022-05-03 14:32:16 +00:00
- name: ESLint
run: "yarn run lint"