-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (38 loc) · 953 Bytes
/
Copy pathvitest.yml
File metadata and controls
42 lines (38 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Vite+ Test
on:
pull_request:
branches:
- main
paths:
- "src/**"
- "musea/**"
- "config/**"
- "types/**"
- "package.json"
- "pnpm-workspace.yaml"
- "pnpm-lock.yaml"
- "vize.config.ts"
- "vite.config.ts"
- "tsconfig.json"
- "tsconfig.vize.json"
- ".github/workflows/vitest.yml"
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Setup Vite+
uses: voidzero-dev/setup-vp@250f29ce396baf5e8f24498e17c0dfdebabc26eb # v1
with:
node-version: "24"
cache: true
- name: Install dependencies
run: vp install
- name: Install Playwright browsers
run: vp exec playwright install --with-deps chromium
- name: Run tests
run: vp test run
env:
CI: true