This repository has been archived by the owner on Nov 15, 2024. It is now read-only.
Merge pull request #414 from grafbase/renovate/eslint-monorepo #858
This file contains 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 | |
jobs: | |
code_quality: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'pnpm' | |
- run: pnpm install | |
- name: Types check | |
run: pnpm types | |
- name: Lint check | |
run: pnpm lint |