Skip to content

no data found

no data found #383

Workflow file for this run

name: Lint
on: [pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install
run: yarn install --frozen-lockfile
id: install
- name: Run prettier
run: yarn format:check
- name: Run ESLint
run: yarn lint:check
# Always run the linter, even if prettier failed
if: ${{ steps.install.outcome == 'success' }}