Skip to content

ci: setup e2e ci pipeline #6

ci: setup e2e ci pipeline

ci: setup e2e ci pipeline #6

Workflow file for this run

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 }}/tests/e2e/ci/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: pwd && ls && pnpm build
- name: install-chromium
run: npx playwright install chromium
- name: e2e
run: sleep 5 && pnpm test:e2e tests/e2e/features/**/*.feature
env:
OCIS_URL: https://ocis:9200