diff --git a/.github/workflows/test_ws_codecov.yml b/.github/workflows/test_ws_codecov.yml index 28acd1e..483956f 100644 --- a/.github/workflows/test_ws_codecov.yml +++ b/.github/workflows/test_ws_codecov.yml @@ -13,21 +13,11 @@ jobs: id: branch-name uses: tj-actions/branch-names@v6 - - name: Checkout to specific branch - uses: actions/checkout@v3 - id: specific-checkout - continue-on-error: true + - uses: actions/checkout@v3 with: repository: biothings/biothings_explorer ref: ${{ steps.branch-name.outputs.current_branch }} - - name: Checkout to main if above failed - if: steps.specific-checkout.outcome == 'failure' - uses: actions/checkout@v3 - with: - repository: biothings/biothings_explorer - ref: main - - name: Use Node.js 18.x uses: actions/setup-node@v3 with: @@ -43,12 +33,11 @@ jobs: pnpm run clone pnpm run git checkout ${{ steps.branch-name.outputs.current_branch }} pnpm i - DEBUG=bte* pnpm --filter bte-server test -- --silent=false --verbose pnpm --filter bte-server test-cov - name: Send coverage report to codecov for visualization uses: codecov/codecov-action@v3 with: - working-directory: ./packages/@biothings-explorer/bte-server + # working-directory: ./packages/@biothings-explorer/bte-trapi files: ./coverage/lcov.info - verbose: true + verbose: true \ No newline at end of file