Merge pull request #524 from underctrl-io/fix-json-import #152
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Quality | |
on: | |
push: | |
branches: | |
- '**' | |
- '!renovate/*' | |
jobs: | |
check-types: | |
name: Check Types | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: '10.15.0' | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 24 | |
registry-url: https://registry.npmjs.org | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Check TypeScript Types | |
run: pnpm dlx turbo check-types | |
prettier: | |
name: Prettier Check | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: '10.15.0' | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 24 | |
registry-url: https://registry.npmjs.org | |
- name: Install Dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Check Prettier Formatting | |
run: pnpm prettier:check |