Skip to content

fix: react fast refresh by reordering Vite React preamble script first #4

fix: react fast refresh by reordering Vite React preamble script first

fix: react fast refresh by reordering Vite React preamble script first #4

Workflow file for this run

name: CI
on:
push:
branches:
- develop
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
ci:
strategy:
matrix:
node: [18, 20]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: 8.9.2
- uses: actions/setup-node@v4
name: Install Node.js
with:
node-version: ${{ matrix.node }}
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build