chore: update vite and vite react plugin #2490
Workflow file for this run
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: Build Extension | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'develop' | |
pull_request: | |
types: [ready_for_review, synchronize, opened] | |
jobs: | |
linux: | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.head_ref }}-build | |
cancel-in-progress: true | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.head_ref }} | |
- uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Setup env | |
run: cp .env.example .env | |
- name: Install pnpm dependencies | |
run: pnpm i --frozen-lockfile | |
- name: Build | |
run: pnpm build |