docs: simplify docs language #139
Workflow file for this run
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: | |
| branches: [main] | |
| jobs: | |
| validate: | |
| name: Validate | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup deps | |
| uses: ./.github/actions/setup | |
| - name: Build | |
| run: bun run build | |
| - name: Run prettier | |
| run: bun run prettier | |
| - name: Run linter | |
| run: bun run lint | |
| - name: Run typecheck | |
| run: bun run typecheck | |
| - name: Run tests | |
| run: bun run test:ci | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| test-react-versions: | |
| name: Test React ${{ matrix.react-version }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| react-version: ["^19.0.0", "^19.1.0", "^19.2.0", "latest", "next"] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup deps | |
| uses: ./.github/actions/setup | |
| - name: Install React ${{ matrix.react-version }} | |
| run: bun add -d react@${{ matrix.react-version }} | |
| - name: Run typecheck | |
| run: bun run typecheck | |
| - name: Run tests | |
| run: bun run test:ci |