chore: release 8.0.1 #2723
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: Test | |
| on: | |
| push: | |
| pull_request: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| linter-and-unit: | |
| name: Linter and Unit test | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: | |
| - 20 | |
| - 22 | |
| - 24 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: pnpm | |
| - name: Install Deps | |
| run: pnpm install --frozen-lockfile | |
| - name: Build project and upload bundle | |
| if: ${{ !cancelled() && matrix.node-version == 24 }} | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| run: pnpm run build | |
| - name: Linter test | |
| if: ${{ !cancelled() && matrix.node-version == 24 }} | |
| run: pnpm lint | |
| - name: Unit test and save results | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
| NODE_OPTIONS: --max_old_space_size=8192 | |
| run: pnpm run test | |
| - name: Upload coverage | |
| if: ${{ !cancelled() && github.ref == 'refs/heads/main' && matrix.node-version == 24 }} | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| - name: Upload test results | |
| if: ${{ !cancelled() && github.ref == 'refs/heads/main' && matrix.node-version == 24 }} | |
| uses: codecov/test-results-action@v1 | |
| with: | |
| file: ./coverage/test-report.junit.xml | |
| token: ${{ secrets.CODECOV_TOKEN }} |