-
Notifications
You must be signed in to change notification settings - Fork 0
78 lines (73 loc) · 1.77 KB
/
ci.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name: CI
on:
push:
branches: [main]
pull_request:
env:
JWT_SECRET: "test-secret"
JWT_REFRESH_SECRET: "test-refresh"
JWT_EXPIRATION_TIME: "15min"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Display package.json
run: cat package.json
- name: Install dependencies
run: |
pnpm install --frozen-lockfile
pnpm list
- name: Build
run: pnpm build
test:
needs: build
runs-on: ubuntu-latest
strategy:
matrix:
test-type: ["web"]
# test-type: ["web", "api", "api:e2e"]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
- name: Display package.json
run: cat package.json
- name: Install dependencies
run: |
pnpm install --frozen-lockfile
pnpm list
- name: Run ${{ matrix.test-type }} tests
run: pnpm test:${{ matrix.test-type }}
playwright:
needs: build
name: "Playwright Tests"
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/playwright:v1.46.0-jammy
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run your tests
run: npx playwright test
env:
HOME: /root