feat: run traces command every 5 minutes for 30 minutes #4100
Workflow file for this run
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: 'coverage' | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| paths: | |
| - 'src/**' | |
| - '*.json' | |
| - '*.js' | |
| - '*.ts' | |
| jobs: | |
| coverage: | |
| continue-on-error: true | |
| if: ${{ github.actor != 'dependabot[bot]' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout PR branch | |
| uses: actions/checkout@v6 | |
| - name: Install Node | |
| run: | | |
| export NVM_DIR="$HOME/.nvm" | |
| [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" | |
| nvm install | |
| nvm use | |
| node -v | |
| npm install | |
| - name: Install gucci | |
| run: | | |
| GUCCI_VERSION="1.6.13" | |
| curl -L -o gucci https://github.com/noqcks/gucci/releases/download/v${GUCCI_VERSION}/gucci-v${GUCCI_VERSION}-linux-amd64 | |
| chmod +x gucci | |
| sudo mv gucci /usr/local/bin/ | |
| - name: Compare Coverage | |
| continue-on-error: true | |
| uses: ArtiomTr/jest-coverage-report-action@v2 | |
| with: | |
| test-script: npm run test:ts | |
| annotations: none |