dev(baseModule / docs): update docs and polish modules #5
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 for Tests | |
| on: | |
| pull_request: | |
| branches: [main] | |
| types: [opened, synchronize, reopened, ready_for_review] | |
| paths: | |
| - src/** | |
| - test/** | |
| push: | |
| branches: [main] | |
| paths: | |
| - src/** | |
| - test/** | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-slim | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up pnpm | |
| uses: pnpm/action-setup@v4.2.0 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: latest | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install | |
| - name: Run tests (pull requests) | |
| if: github.event_name == 'pull_request' | |
| run: pnpm test | |
| - name: Run coverage tests (push to main) | |
| if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' | |
| run: pnpm test:coverage | |
| - name: Upload coverage reports to Codecov (push to main) | |
| if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} |