Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: revert limit pnpm version #1737

Merged
merged 1 commit into from
Sep 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 16 additions & 15 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,20 +33,21 @@ jobs:
- name: Run unit test
run: |
make unit_test
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
files: ./coverage/unit_test.txt
fail_ci_if_error: true
flags: backend_ut
verbose: true
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v2
# with:
# files: ./coverage/unit_test.txt
# fail_ci_if_error: true
# flags: backend_ut
# verbose: true

backend_integration:
runs-on: ubuntu-latest
timeout-minutes: 20
strategy:
matrix:
tidb_version: [nightly, ^6.0, ^5.4, ^5.0]
# tidb_version: [nightly, ^6.0, ^5.4, ^5.0]
tidb_version: [^7.5]
name: Backend - Integration - TiDB@${{ matrix.tidb_version }}
steps:
- name: Checkout code
Expand All @@ -71,13 +72,13 @@ jobs:
- name: Run integration test
run: |
make integration_test TIDB_VERSION=${{ matrix.tidb_version }}
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
files: ./coverage/integration_${{ matrix.tidb_version }}.txt
fail_ci_if_error: true
flags: backend_integration
verbose: true
# - name: Upload coverage to Codecov
# uses: codecov/codecov-action@v2
# with:
# files: ./coverage/integration_${{ matrix.tidb_version }}.txt
# fail_ci_if_error: true
# flags: backend_integration
# verbose: true

# e2e_test:
# runs-on: ubuntu-latest
Expand Down
6 changes: 2 additions & 4 deletions ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@
"version": "1.0.0",
"license": "MIT",
"engines": {
"node": ">= 18.16.0",
"pnpm": ">= 8"
"node": ">=18.16.0"
},
"scripts": {
"fmt-check": "prettier --check .",
Expand Down Expand Up @@ -39,6 +38,5 @@
"hooks": {
"pre-commit": "lint-staged"
}
},
"packageManager": "pnpm@8.15.9"
}
}
Loading