Skip to content

feat: add size cap of 1000 to mdx images #258

feat: add size cap of 1000 to mdx images

feat: add size cap of 1000 to mdx images #258

Workflow file for this run

name: Code Check
on:
push:
branches:
- main
pull_request: {}
concurrency:
group: ${{ github.job }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: ⬣ ESLint, ʦ TypeScript, and 💅 Prettier
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v2
- name: ⎔ Setup node
uses: actions/setup-node@v3
with:
node-version: 18
- name: 📥 Download deps
uses: u0reo/npm-install@fix/restore-failure
with:
useRollingCache: true
- name: 🔬 Lint
run: yarn lint:strict
- name: 🔎 Type check
run: yarn typecheck
- name: 💅 Prettier check
run: yarn format:check