Merge pull request #2504 from visualize-admin/vercel/react-server-com… #1231
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: Validate | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| base-checks: | |
| runs-on: ubuntu-latest | |
| continue-on-error: true | |
| strategy: | |
| matrix: | |
| job: [lint, typecheck, test, knip] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22.x | |
| cache: "yarn" | |
| cache-dependency-path: "**/yarn.lock" | |
| - run: yarn install --immutable --prefer-offline | |
| - run: yarn lingui compile | |
| - run: yarn ${{ matrix.job }} |