Skip to content

chore: introduce compound pattern for components #42

chore: introduce compound pattern for components

chore: introduce compound pattern for components #42

# The main CI workflow, running only on PRs, checking code-quality and running tests.
name: 'CI PR Code Quality'
on: [pull_request]
jobs:
code-quality-and-tests:
runs-on: ubuntu-latest
timeout-minutes: 14
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- name: Run ESLint
run: yarn lint
- name: Run Prettier
run: yarn format:check
- name: Run TypeScript
run: yarn type:check
- name: Run Tests
run: yarn test