Skip to content

chore(deps-dev): bump @vitejs/plugin-react from 4.7.0 to 5.0.3 #40

chore(deps-dev): bump @vitejs/plugin-react from 4.7.0 to 5.0.3

chore(deps-dev): bump @vitejs/plugin-react from 4.7.0 to 5.0.3 #40

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