chore(deps): Update dependency vite to v6.3.6 [SECURITY] #841
This file contains hidden or 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
on: | |
push: | |
branches: | |
- 'main' | |
- 'renovate/**' | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: | |
- 'main' | |
paths-ignore: | |
- '**.md' | |
name: validate_build | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- name: Setup Node and pnpm-store cache | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'pnpm' | |
- name: Dump versions | |
run: | | |
echo "node: $(node -v)" | |
echo "npm: $(npm -v)" | |
echo "pnpm: $(pnpm -v)" | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Setup script cache | |
uses: actions/cache@v4 | |
with: | |
path: node_modules/.cache | |
key: script-cache-${{ hashFiles('**/pnpm-lock.yaml') }}-run-id-${{ github.run_id }} | |
restore-keys: script-cache-${{ hashFiles('**/pnpm-lock.yaml') }}-run-id- | |
- name: Run lint | |
run: pnpm lint | |
build: | |
name: Build | |
needs: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- name: Setup Node and pnpm-store cache | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'pnpm' | |
- name: Dump versions | |
run: | | |
echo "node: $(node -v)" | |
echo "npm: $(npm -v)" | |
echo "pnpm: $(pnpm -v)" | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Build | |
run: pnpm build |