Skip to content

feat: add blockquote #45

feat: add blockquote

feat: add blockquote #45

Workflow file for this run

name: Pull Request Lint
on:
pull_request:
jobs:
faency:
name: Test, lint and build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: enable corepack
run: corepack enable
- name: Setup node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: yarn
- name: Install
run: yarn install
- name: Patch
run: yarn patch-package
- name: Lint
run: yarn lint
- name: Test
run: yarn test:ci
- name: Build
run: yarn build