Skip to content

Bump @vitejs/plugin-react from 4.3.0 to 4.3.1 #392

Bump @vitejs/plugin-react from 4.3.0 to 4.3.1

Bump @vitejs/plugin-react from 4.3.0 to 4.3.1 #392

Workflow file for this run

name: Next.js CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
- name: Install dependencies
run: npm install
- name: Run linting checks
run: npm run lint
- name: Run formatting checks
run: npm run format
- name: Run tests
run: npm test
- name: Run the tests and generate coverage reports
run: npm test -- --coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}