chore(deps): update dependency eslint-plugin-react-hooks to v5 #13874
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: Test | |
on: ['push'] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Test & Coverage | |
runs-on: ubuntu-latest | |
env: | |
CI: true | |
steps: | |
# Setup | |
- uses: actions/checkout@v4 | |
- uses: pnpm/[email protected] # Uses version from package.json#packageManager | |
- name: Setup Node (using .node-version) | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.node-version' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
# Action | |
- name: Run Test Coverage | |
run: pnpm test:ci --ci --no-cache |