-
-
Notifications
You must be signed in to change notification settings - Fork 62
56 lines (51 loc) · 1.66 KB
/
e2e.yml
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: End-to-end tests
on: [push]
jobs:
vite-cli-latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: ./create-test-app.sh "npm create vite@latest test-app -- --template vue"
- uses: cypress-io/github-action@v6
with:
start: npm run test:preview
vite-cli-latest-ts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: ./create-test-app.sh "npm create vite@latest test-app -- --template vue-ts" --typescript
- uses: cypress-io/github-action@v6
with:
start: npm run test:preview
vite-cli-4:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: ./create-test-app.sh "npm create vite@4 test-app -- --template vue"
- uses: cypress-io/github-action@v6
with:
start: npm run test:preview
vite-cli-4-ts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: ./create-test-app.sh "npm create vite@4 test-app -- --template vue-ts" --typescript
- uses: cypress-io/github-action@v6
with:
start: npm run test:preview
vue-cli-latest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: ./create-test-app.sh "npm create vue@latest test-app -- --default"
- uses: cypress-io/github-action@v6
with:
start: npm run test:preview
vue-cli-latest-ts:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: ./create-test-app.sh "npm create vue@latest test-app -- --default --ts" --typescript
- uses: cypress-io/github-action@v6
with:
start: npm run test:preview