-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (56 loc) · 1.41 KB
/
publishing.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
name: Publishing
on:
push:
branches:
- develop
- release/*
- hotfix/*
tags:
- v*.*.*
env:
REGISTRY: ghcr.io
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
test-type:
- unit
env:
PLAYWRIGHT_BROWSERS_PATH: .playwright
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: lts/*
check-latest: true
cache: npm
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: '21'
check-latest: true
- name: Cache Playwright browsers
uses: actions/cache@v4
if: ${{ matrix.test-type == 'integration' }}
with:
path: .playwright
key: ${{ runner.os }}-playwright-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-playwright-
- name: Install dependencies
run: npm ci
- name: Install Playwright browsers
if: ${{ matrix.test-type == 'integration' }}
run: npx playwright install --with-deps
- name: Generate OpenAPI client
run: npm run openapi
- name: Run tests
run: npm run test:${{ matrix.test-type }}