-
Notifications
You must be signed in to change notification settings - Fork 388
53 lines (44 loc) · 1.18 KB
/
tests.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
name: 🧪 Tests
on:
workflow_dispatch:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
tests:
name: "🧪 Tests"
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v4
with:
# https://github.com/pnpm/pnpm/issues/8953
version: 9.15.3
- name: Install project dependencies
run: pnpm i
- name: Build SolidStart
run: pnpm --filter @solidjs/start build
- name: Build Test Project
run: pnpm --filter tests build
- name: Run unit tests
run: pnpm --filter tests unit:ci
- name: Install Cypress dependencies
uses: cypress-io/github-action@v6
with:
working-directory: .
runTests: false
- name: E2E Firefox
uses: cypress-io/github-action@v6
with:
install: false
working-directory: packages/tests
start: pnpm start
browser: firefox
- name: E2E Chromium
uses: cypress-io/github-action@v6
with:
install: false
working-directory: packages/tests
start: pnpm start
browser: chromium