-
-
Notifications
You must be signed in to change notification settings - Fork 1
69 lines (57 loc) · 1.59 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
name: lint-build-e2e
on:
push:
branches:
- main
pull_request:
jobs:
lint-build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: pnpm-install
uses: pnpm/action-setup@v3
with:
run_install: |
- args: [--frozen-lockfile, --strict-peer-dependencies]
- name: lint
run: pnpm lint
- name: build
run: pnpm build
e2e:
runs-on: ubuntu-latest
container: node:18
services:
extension:
image: nginx:1.25.3
volumes:
- ${{ github.workspace }}/dev/docker/nginx.conf:/etc/nginx/conf.d/default.conf:ro
- ${{ github.workspace }}/dist:/usr/share/nginx/html:ro
ocis:
image: owncloud/ocis:5.0.0
env:
OCIS_URL: https://ocis:9200
OCIS_INSECURE: true
OCIS_LOG_LEVEL: error
WEB_UI_CONFIG_FILE: /web/config.json
IDM_ADMIN_PASSWORD: admin
PROXY_ENABLE_BASIC_AUTH: true
volumes:
- ${{ github.workspace }}/tests/e2e/ci/web.config.json:/web/config.json:ro
steps:
- name: checkout
uses: actions/checkout@v4
- name: pnpm-install
uses: pnpm/action-setup@v3
with:
run_install: |
- args: [--frozen-lockfile, --strict-peer-dependencies]
- name: build
run: pnpm build
- name: install-chromium
run: npx playwright install chromium
- name: e2e
run: sleep5 && pnpm test:e2e tests/e2e/features/**/*.feature
env:
OCIS_URL: https://ocis:9200