-
Notifications
You must be signed in to change notification settings - Fork 64
52 lines (47 loc) · 1.21 KB
/
main.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
name: Run Cypress Tests
on:
push:
branches:
- "main"
pull_request:
workflow_dispatch:
jobs:
tests:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
project:
[
"angular",
"angular-standalone",
"react-next14-ts",
"react-next15-ts",
"react-vite-ts",
"react-webpack5-js",
"svelte-vite-ts",
"svelte-webpack-ts",
"vue3-vite-ts",
"vue3-webpack-ts",
]
name: Cypress Tests
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Cypress Component Tests
uses: cypress-io/github-action@v6
with:
component: true
working-directory: "${{ matrix.project }}"
# smoke tests the sample app and makes sure the login via msw works as expected
- name: Cypress E2E Tests
uses: cypress-io/github-action@v6
with:
start: npm start
wait-on: 'http://localhost:4200'
working-directory: "${{ matrix.project }}"
browser: chrome