chore(deps-dev): bump eslint-plugin-react-hooks from 4.6.2 to 5.0.0 #880
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: Retro CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "21" | |
- name: Install dependencies | |
run: npm ci | |
- name: Prettier check | |
run: npm run format:check | |
- name: Lint | |
run: npm run lint | |
- name: Build app | |
run: npm run build | |
- name: Test | |
run: npm test | |
- name: Install playwright browsers | |
if: ${{ vars.SKIP_E2E != 'true' }} | |
run: npx playwright install --with-deps | |
- name: Run e2e tests | |
if: ${{ vars.SKIP_E2E != 'true' }} | |
run: npm run e2e |