mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 22:23:33 +01:00
d569940990
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
177 lines
6.3 KiB
YAML
177 lines
6.3 KiB
YAML
# Leave the powered by Sauce Labs bit in as this means we get additional concurrency
|
|
name: "Frontend tests powered by Sauce Labs"
|
|
|
|
on: [push]
|
|
|
|
permissions:
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
jobs:
|
|
withoutplugins:
|
|
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: src/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
|
|
-
|
|
uses: saucelabs/sauce-connect-action@v2.3.6
|
|
with:
|
|
username: ${{ secrets.SAUCE_USERNAME }}
|
|
accessKey: ${{ secrets.SAUCE_ACCESS_KEY }}
|
|
tunnelIdentifier: ${{ steps.sauce_strings.outputs.tunnel_id }}
|
|
-
|
|
name: Run the frontend tests
|
|
shell: bash
|
|
env:
|
|
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
|
|
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
|
|
SAUCE_NAME: ${{ steps.sauce_strings.outputs.name }}
|
|
TRAVIS_JOB_NUMBER: ${{ steps.sauce_strings.outputs.tunnel_id }}
|
|
GIT_HASH: ${{ steps.environment.outputs.sha_short }}
|
|
run: |
|
|
src/tests/frontend/travis/runner.sh
|
|
|
|
withplugins:
|
|
name: with 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: 20
|
|
- 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: Install Etherpad plugins
|
|
# The --legacy-peer-deps flag is required to work around a bug in npm v7:
|
|
# https://github.com/npm/cli/issues/2199
|
|
run: >
|
|
pnpm install
|
|
ep_align
|
|
ep_author_hover
|
|
ep_cursortrace
|
|
ep_embedmedia
|
|
ep_font_size
|
|
ep_hash_auth
|
|
ep_headings2
|
|
ep_image_upload
|
|
ep_markdown
|
|
ep_readonly_guest
|
|
ep_set_title_on_pad
|
|
ep_spellcheck
|
|
ep_subscript_and_superscript
|
|
ep_table_of_contents
|
|
# Etherpad core dependencies must be installed after installing the
|
|
# plugin's dependencies, otherwise npm will try to hoist common
|
|
# dependencies by removing them from src/node_modules and installing them
|
|
# in the top-level node_modules. As of v6.20.10, npm's hoist logic appears
|
|
# to be buggy, because it sometimes removes dependencies from
|
|
# src/node_modules but fails to add them to the top-level node_modules.
|
|
# Even if npm correctly hoists the dependencies, the hoisting seems to
|
|
# confuse tools such as `npm outdated`, `npm update`, and some ESLint
|
|
# rules.
|
|
-
|
|
name: Install all dependencies and symlink for ep_etherpad-lite
|
|
run: src/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": 1000000/' -i settings.json
|
|
# XXX we should probably run all tests, because plugins could effect their results
|
|
-
|
|
name: Remove standard frontend test files, so only plugin tests are run
|
|
run: rm src/tests/frontend/specs/*
|
|
-
|
|
uses: saucelabs/sauce-connect-action@v2.3.6
|
|
with:
|
|
username: ${{ secrets.SAUCE_USERNAME }}
|
|
accessKey: ${{ secrets.SAUCE_ACCESS_KEY }}
|
|
tunnelIdentifier: ${{ steps.sauce_strings.outputs.tunnel_id }}
|
|
-
|
|
name: Run the frontend tests
|
|
shell: bash
|
|
env:
|
|
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
|
|
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}
|
|
SAUCE_NAME: ${{ steps.sauce_strings.outputs.name }}
|
|
TRAVIS_JOB_NUMBER: ${{ steps.sauce_strings.outputs.tunnel_id }}
|
|
GIT_HASH: ${{ steps.environment.outputs.sha_short }}
|
|
run: |
|
|
src/tests/frontend/travis/runner.sh
|