Skip to content

🔍 Code Quality Checks #2333

🔍 Code Quality Checks

🔍 Code Quality Checks #2333

Workflow file for this run

name: 🔍 Code Quality Checks
on:
push:
schedule:
- cron: '0 9 * * *' # every day at 9:00
jobs:
test:
name: Tests and linting
runs-on: ubuntu-24.04
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Setup Node and Install Dependencies
uses: ./.github/actions/setup-install
- name: 📐 Code Linting
run: yarn lint
- name: 💅 Code Formatting
run: yarn format
- name: 🧪 Testing Packages
run: yarn packages:test