Skip to content

Commit

Permalink
fix: revert limit pnpm version (#1737)
Browse files Browse the repository at this point in the history
  • Loading branch information
baurine authored Sep 24, 2024
1 parent 750f19d commit 6f3f972
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 19 deletions.
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"
}
}

0 comments on commit 6f3f972

Please sign in to comment.