2023-06-23 12:29:51 +05:30
|
|
|
name: Lint
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [$default-branch]
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
pull_request:
|
|
|
|
paths-ignore:
|
|
|
|
- '**.md'
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
2023-06-23 12:35:44 +05:30
|
|
|
setup_and_lint:
|
2023-06-23 12:29:51 +05:30
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
|
|
- name: Setup node
|
2025-01-03 11:16:57 +05:30
|
|
|
uses: actions/setup-node@v4
|
2023-06-23 12:29:51 +05:30
|
|
|
with:
|
2024-12-13 23:15:05 +01:00
|
|
|
node-version: '20.18.1'
|
2023-06-23 12:29:51 +05:30
|
|
|
|
|
|
|
- name: Set yarn version
|
|
|
|
run: yarn set version 1.22.18
|
|
|
|
|
|
|
|
- name: Checkout Books
|
2025-01-03 11:16:57 +05:30
|
|
|
uses: actions/checkout@v4
|
2023-06-23 12:29:51 +05:30
|
|
|
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: yarn
|
|
|
|
|
|
|
|
- name: Lint
|
2023-06-27 13:09:24 +05:30
|
|
|
run: yarn lint
|
|
|
|
|
|
|
|
- name: Check Formatting
|
|
|
|
run: yarn prettier --check .
|