Skip to content

chore(css-modules): 🤖 ship pre-compiled CSS alongside components (#956) #1012

chore(css-modules): 🤖 ship pre-compiled CSS alongside components (#956)

chore(css-modules): 🤖 ship pre-compiled CSS alongside components (#956) #1012

Workflow file for this run

name: 🚑 Code quality checks
on:
push:
workflow_dispatch:
env:
HUSKY: 0
jobs:
code-quality-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: 'latest'
- name: Enable Corepack
run: corepack enable
- name: Install dependencies
run: yarn install --immutable
- name: Typecheck
run: yarn typecheck
- name: Linter
run: yarn lint
- name: Formatter
run: yarn format
- name: Circular Dependencies
run: yarn circular-dependency:check