mirror of
https://github.com/PR0M3TH3AN/VoxVera.git
synced 2025-09-08 15:08:42 +00:00
28 lines
632 B
YAML
28 lines
632 B
YAML
name: E2E
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
|
|
jobs:
|
|
e2e:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 20
|
|
env:
|
|
VOXVERA_E2E_OFFLINE: "1"
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y qrencode imagemagick jq python3-pip nodejs npm
|
|
npm install -g javascript-obfuscator html-minifier-terser
|
|
- name: Run end-to-end tests
|
|
run: ci/test-e2e.sh
|
|
- name: Upload logs
|
|
if: always()
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: ci-logs
|
|
path: ci-logs/
|