workflows: better names
parent
277a9f8fb9
commit
f6be407df2
|
@ -5,7 +5,7 @@ on: [push, pull_request]
|
|||
|
||||
jobs:
|
||||
withoutplugins:
|
||||
name: Backend tests without plugins
|
||||
name: without plugins
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
@ -26,7 +26,7 @@ jobs:
|
|||
run: tests/frontend/travis/runnerBackend.sh
|
||||
|
||||
withplugins:
|
||||
name: Backend tests with Plugins
|
||||
name: with Plugins
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
|
|
@ -5,7 +5,7 @@ on: [push, pull_request]
|
|||
|
||||
jobs:
|
||||
dockerfile:
|
||||
name: Builds an image using Dockerfile and runs a connectivity test
|
||||
name: build image and run connectivity test
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
|
|
@ -7,7 +7,7 @@ jobs:
|
|||
withoutplugins:
|
||||
# don't run on PRs from forks
|
||||
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
|
||||
|
||||
steps:
|
||||
|
@ -45,7 +45,7 @@ jobs:
|
|||
withplugins:
|
||||
# don't run on PRs from forks
|
||||
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
|
||||
|
||||
steps:
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
name: "Lint package-lock.json"
|
||||
name: "Lint"
|
||||
|
||||
# any branch is useful for testing before a PR is submitted
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
lint-package-lock:
|
||||
name: Lint the package-lock.json file
|
||||
name: package-lock.json
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
|
|
@ -5,7 +5,7 @@ on: [push, pull_request]
|
|||
|
||||
jobs:
|
||||
withoutplugins:
|
||||
name: Load test without plugins
|
||||
name: without plugins
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
@ -22,7 +22,7 @@ jobs:
|
|||
run: tests/frontend/travis/runnerLoadTest.sh
|
||||
|
||||
withplugins:
|
||||
name: Load test with Plugins
|
||||
name: with Plugins
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
name: "Test rate limit"
|
||||
name: "rate limit"
|
||||
|
||||
# any branch is useful for testing before a PR is submitted
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
ratelimit:
|
||||
name: test
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
|
|
Loading…
Reference in New Issue