Skip to content

chore(deps-dev): bump vite from 6.3.5 to 7.1.11 #48

chore(deps-dev): bump vite from 6.3.5 to 7.1.11

chore(deps-dev): bump vite from 6.3.5 to 7.1.11 #48

Workflow file for this run

name: Build Package
on:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: lint code
run: yarn lint
- name: test
run: yarn test:run
- name: Build package
run: yarn build
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: build-artifacts
path: dist/
retention-days: 7