Update local next version of projects in the repo (#1474) #3856
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| concurrency: | |
| group: tests-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| tests: | |
| name: Tests | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| index: [1, 2] | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - uses: ./.github/actions/setup-deps | |
| - name: Unit tests | |
| run: pnpm test:unit --shard=${{ matrix.index }}/2 --ci --runInBand | |
| linting: | |
| name: Linting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - uses: ./.github/actions/setup-deps | |
| - name: Prettier | |
| run: pnpm check:format . | |
| - name: ESLint | |
| run: pnpm check:lint . | |
| typescript: | |
| name: TypeScript | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - uses: ./.github/actions/setup-deps | |
| - name: TypeScript | |
| run: pnpm check:types | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v3 | |
| - uses: ./.github/actions/setup-deps | |
| - name: Preconstruct | |
| run: pnpm build:packages |