Skip to content

chore: align app extension with app-vite beta.41 #7

chore: align app extension with app-vite beta.41

chore: align app extension with app-vite beta.41 #7

Workflow file for this run

name: Run Vitest
on:
push:
branches: [dev, v3-beta]
pull_request:
branches: [dev, v3-beta]
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
vitest:
name: Run Vitest (${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [24]
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v6
- name: Setup Node
uses: actions/setup-node@v5
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install
run: pnpm install --frozen-lockfile
- name: Verify
run: pnpm verify