Skip to content

chore(deps): update dependency @vitejs/plugin-react to v6 #534

chore(deps): update dependency @vitejs/plugin-react to v6

chore(deps): update dependency @vitejs/plugin-react to v6 #534

Workflow file for this run

name: PR CI
on:
pull_request:
types: [opened, synchronize, reopened, edited, ready_for_review]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Commitlint
uses: wagoid/commitlint-github-action@v6
with:
configFile: commitlint.config.mjs
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build