-
Notifications
You must be signed in to change notification settings - Fork 0
87 lines (83 loc) · 2.57 KB
/
test.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
79
80
81
82
83
84
85
86
87
name: Tests
on:
pull_request:
branches: ["main"]
workflow_call:
concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true
jobs:
unit:
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18.18.0
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 9.8.0
run_install: false
- name: Use node_modules cache
uses: actions/cache@v4
id: nm-cache
with:
path: "svelte-app/node_modules"
key: ${{ runner.os }}-npm-${{ hashFiles('svelte-app/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Install dependencies
if: steps.nm-cache.outputs.cache-hit != 'true'
run: make install-web
- name: Run tests
run: make vitest
integration:
name: Integration tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18.18.0
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9.8.0
run_install: false
- name: Use node_modules cache
uses: actions/cache@v4
id: nm-cache
with:
path: "svelte-app/node_modules"
key: ${{ runner.os }}-npm-${{ hashFiles('svelte-app/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Install dependencies
if: steps.nm-cache.outputs.cache-hit != 'true'
run: make install-web
- name: Get installed Playwright version
id: playwright-version
run: echo "PLAYWRIGHT_VERSION=$(node -e "console.log(require('./svelte-app/package-lock.json').dependencies['@playwright/test'].version)")" >> $GITHUB_ENV
- name: Use Playwright cache
uses: actions/cache@v4
id: playwright-cache
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-playwright-${{ env.PLAYWRIGHT_VERSION }}
- name: Ensure Playwright browsers are installed
run: (cd ./svelte-app && pnpm exec playwright install --with-deps && pnpm exec playwright install-deps)
- name: Run tests
run: make playwright
- name: Upload artifacts
uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-results
path: test-results/
retention-days: 7