chore(deps): update dependency eslint to v8.57.0 - autoclosed #227
Workflow file for this run
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 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@168e17b6c9de88eddacf0d5ded5e3905573af7f2 | |
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 |