Skip to content

Bump vite from 6.2.2 to 7.1.12 in /pyodide-e2e #820

Bump vite from 6.2.2 to 7.1.12 in /pyodide-e2e

Bump vite from 6.2.2 to 7.1.12 in /pyodide-e2e #820

Workflow file for this run

name: JS Code Format
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
static-test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./pyodide-e2e
steps:
- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version-file: pyodide-e2e/.nvmrc
- uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0
name: Install pnpm
with:
version: 8
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- run: pnpm run format:check