chore(deps): update artiomtr/jest-coverage-report-action digest to 82bc34a - autoclosed #264
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: PR Check | |
| on: | |
| pull_request: | |
| jobs: | |
| pr_check: | |
| name: PR Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v2 | |
| - name: Cache PNPM Modules | |
| uses: actions/cache@v2 | |
| with: | |
| path: ~/.pnpm-store | |
| key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} | |
| restore-keys: | | |
| ${{ runner.os }}-pnpm- | |
| - name: Setup PNPM | |
| uses: pnpm/action-setup@v2.0.1 | |
| with: | |
| version: latest | |
| run_install: true | |
| - name: Run ESLint | |
| run: pnpm run lint | |
| - name: Run Jest | |
| uses: ArtiomTr/jest-coverage-report-action@82bc34a0347019ba8f6d2808cd96cec42ef9620e | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| package-manager: pnpm | |
| skip-step: install | |
| - name: Build | |
| run: pnpm run build | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@v1 | |
| with: | |
| languages: javascript | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@v1 |