mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-28 03:16:16 -04:00
workflows: better names
This commit is contained in:
parent
277a9f8fb9
commit
f6be407df2
6 changed files with 11 additions and 10 deletions
4
.github/workflows/backend-tests.yml
vendored
4
.github/workflows/backend-tests.yml
vendored
|
@ -5,7 +5,7 @@ on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
withoutplugins:
|
withoutplugins:
|
||||||
name: Backend tests without plugins
|
name: without plugins
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -26,7 +26,7 @@ jobs:
|
||||||
run: tests/frontend/travis/runnerBackend.sh
|
run: tests/frontend/travis/runnerBackend.sh
|
||||||
|
|
||||||
withplugins:
|
withplugins:
|
||||||
name: Backend tests with Plugins
|
name: with Plugins
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
2
.github/workflows/dockerfile.yml
vendored
2
.github/workflows/dockerfile.yml
vendored
|
@ -5,7 +5,7 @@ on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
dockerfile:
|
dockerfile:
|
||||||
name: Builds an image using Dockerfile and runs a connectivity test
|
name: build image and run connectivity test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
4
.github/workflows/frontend-tests.yml
vendored
4
.github/workflows/frontend-tests.yml
vendored
|
@ -7,7 +7,7 @@ jobs:
|
||||||
withoutplugins:
|
withoutplugins:
|
||||||
# don't run on PRs from forks
|
# don't run on PRs from forks
|
||||||
if: github.event.pull_request.head.repo.full_name == 'ether/etherpad-lite' || github.event_name == 'push'
|
if: github.event.pull_request.head.repo.full_name == 'ether/etherpad-lite' || github.event_name == 'push'
|
||||||
name: Frontend tests without plugins
|
name: without plugins
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -45,7 +45,7 @@ jobs:
|
||||||
withplugins:
|
withplugins:
|
||||||
# don't run on PRs from forks
|
# don't run on PRs from forks
|
||||||
if: github.event.pull_request.head.repo.full_name == 'ether/etherpad-lite' || github.event_name == 'push'
|
if: github.event.pull_request.head.repo.full_name == 'ether/etherpad-lite' || github.event_name == 'push'
|
||||||
name: Frontend tests with plugins
|
name: with plugins
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
4
.github/workflows/lint-package-lock.yml
vendored
4
.github/workflows/lint-package-lock.yml
vendored
|
@ -1,11 +1,11 @@
|
||||||
name: "Lint package-lock.json"
|
name: "Lint"
|
||||||
|
|
||||||
# any branch is useful for testing before a PR is submitted
|
# any branch is useful for testing before a PR is submitted
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint-package-lock:
|
lint-package-lock:
|
||||||
name: Lint the package-lock.json file
|
name: package-lock.json
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
4
.github/workflows/load-test.yml
vendored
4
.github/workflows/load-test.yml
vendored
|
@ -5,7 +5,7 @@ on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
withoutplugins:
|
withoutplugins:
|
||||||
name: Load test without plugins
|
name: without plugins
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
@ -22,7 +22,7 @@ jobs:
|
||||||
run: tests/frontend/travis/runnerLoadTest.sh
|
run: tests/frontend/travis/runnerLoadTest.sh
|
||||||
|
|
||||||
withplugins:
|
withplugins:
|
||||||
name: Load test with Plugins
|
name: with Plugins
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
3
.github/workflows/rate-limit.yml
vendored
3
.github/workflows/rate-limit.yml
vendored
|
@ -1,10 +1,11 @@
|
||||||
name: "Test rate limit"
|
name: "rate limit"
|
||||||
|
|
||||||
# any branch is useful for testing before a PR is submitted
|
# any branch is useful for testing before a PR is submitted
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
ratelimit:
|
ratelimit:
|
||||||
|
name: test
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue