Skip to content

feat(lint): fix with lint files #4

feat(lint): fix with lint files

feat(lint): fix with lint files #4

Workflow file for this run

name: React Vite CI
on:
pull_request:
branches:
- develop
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install PNPM
run: npm install -g pnpm
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20.x'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --no-frozen-lockfile
- name: Linter
run: pnpm run lint -- --max-warnings=1000
- name: Compile
run: pnpm run build
- name: Build and Preview
run: pnpm run preview