don't run on PRs from forks
parent
f8630b11c0
commit
277a9f8fb9
|
@ -5,6 +5,8 @@ on: [push, pull_request]
|
|||
|
||||
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
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
|
@ -41,6 +43,8 @@ jobs:
|
|||
tests/frontend/travis/runner.sh
|
||||
|
||||
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
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
|
|
Loading…
Reference in New Issue