Update all packages #39
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: PR Validation | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
validate-pr: | |
name: Validate PR | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .nvmrc | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
run_install: true | |
- name: Typecheck | |
run: pnpm typecheck | |
- name: Run unit tests | |
run: pnpm test:unit | |
- name: Lint | |
run: SKIP_ENV_VALIDATION=true pnpm lint | |
- name: Check formatting | |
run: pnpm format:check | |
- name: Check renovate | |
run: pnpm --package renovate dlx renovate-config-validator --strict |