fix: pagination button on tx list view #114
This file contains 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: pr-test | |
# 1. Runs e2e | |
# 2. Upload coverage | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Build the container | |
run: docker build . -t www | |
# - name: Run unit e2e | |
# run: docker run www yarn run test | |
# | |
# - uses: codecov/codecov-action@v2 | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} | |
# files: ./coverage.out | |
# flags: unit | |
# fail_ci_if_error: true | |
# | |
# - name: Bring up stack | |
# run: make up | |
# | |
# - name: Run integration e2e | |
# run: docker run www yarn run test | |
# | |
# - uses: codecov/codecov-action@v2 | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} | |
# files: ./coverage.out | |
# flags: integration | |
# fail_ci_if_error: true |