mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-05 14:47:12 -04:00
Added frontend playwright tests.
This commit is contained in:
parent
2ef1bba203
commit
670032277e
1 changed files with 77 additions and 0 deletions
77
.github/workflows/frontend-tests.yml
vendored
77
.github/workflows/frontend-tests.yml
vendored
|
@ -75,6 +75,81 @@ jobs:
|
||||||
GIT_HASH: ${{ steps.environment.outputs.sha_short }}
|
GIT_HASH: ${{ steps.environment.outputs.sha_short }}
|
||||||
run: |
|
run: |
|
||||||
src/tests/frontend/travis/runner.sh
|
src/tests/frontend/travis/runner.sh
|
||||||
|
withoutpluginsPlaywright:
|
||||||
|
name: without plugins
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
if: ${{ github.actor != 'dependabot[bot]' }}
|
||||||
|
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Generate Sauce Labs strings
|
||||||
|
id: sauce_strings
|
||||||
|
run: |
|
||||||
|
printf %s\\n '::set-output name=name::${{ github.workflow }} - ${{ github.job }}'
|
||||||
|
printf %s\\n '::set-output name=tunnel_id::${{ github.run_id }}-${{ github.run_number }}-${{ github.job }}'
|
||||||
|
-
|
||||||
|
name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
-
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: 21
|
||||||
|
- uses: pnpm/action-setup@v3
|
||||||
|
name: Install pnpm
|
||||||
|
with:
|
||||||
|
version: 8
|
||||||
|
run_install: false
|
||||||
|
- name: Get pnpm store directory
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
||||||
|
- uses: actions/cache@v4
|
||||||
|
name: Setup pnpm cache
|
||||||
|
with:
|
||||||
|
path: ${{ env.STORE_PATH }}
|
||||||
|
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-pnpm-store-
|
||||||
|
- name: Only install direct dependencies
|
||||||
|
run: pnpm config set auto-install-peers false
|
||||||
|
-
|
||||||
|
name: Install all dependencies and symlink for ep_etherpad-lite
|
||||||
|
run: bin/installDeps.sh
|
||||||
|
-
|
||||||
|
name: export GIT_HASH to env
|
||||||
|
id: environment
|
||||||
|
run: echo "::set-output name=sha_short::$(git rev-parse --short ${{ github.sha }})"
|
||||||
|
-
|
||||||
|
name: Create settings.json
|
||||||
|
run: cp settings.json.template settings.json
|
||||||
|
-
|
||||||
|
name: Disable import/export rate limiting
|
||||||
|
run: |
|
||||||
|
sed -e '/^ *"importExportRateLimiting":/,/^ *\}/ s/"max":.*/"max": 100000000/' -i settings.json
|
||||||
|
- name: Run the frontend tests
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
pnpm run dev &
|
||||||
|
connected=false
|
||||||
|
can_connect() {
|
||||||
|
curl -sSfo /dev/null http://localhost:9001/ || return 1
|
||||||
|
connected=true
|
||||||
|
}
|
||||||
|
now() { date +%s; }
|
||||||
|
start=$(now)
|
||||||
|
while [ $(($(now) - $start)) -le 15 ] && ! can_connect; do
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
cd src
|
||||||
|
pnpm exec playwright install
|
||||||
|
pnpm exec playwright install-deps
|
||||||
|
pnpm run test-ui
|
||||||
|
- uses: actions/upload-artifact@v4
|
||||||
|
if: always()
|
||||||
|
with:
|
||||||
|
name: playwright-report-${{ matrix.node }}
|
||||||
|
path: src/playwright-report/
|
||||||
|
retention-days: 30
|
||||||
|
|
||||||
withplugins:
|
withplugins:
|
||||||
name: with plugins
|
name: with plugins
|
||||||
|
@ -175,3 +250,5 @@ jobs:
|
||||||
GIT_HASH: ${{ steps.environment.outputs.sha_short }}
|
GIT_HASH: ${{ steps.environment.outputs.sha_short }}
|
||||||
run: |
|
run: |
|
||||||
src/tests/frontend/travis/runner.sh
|
src/tests/frontend/travis/runner.sh
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue