ci: Remove unneeded checks and services (#7759)

This commit is contained in:
Shrikant Sharat Kandula 2021-09-23 16:48:45 +05:30 committed by GitHub
parent 8e6ba37d00
commit 4f5a0c027a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -106,25 +106,6 @@ jobs:
working-directory: app/server
runs-on: ubuntu-latest
# Only run this workflow for internally triggered events
if: |
github.event_name == 'workflow_dispatch' ||
github.event_name == 'push' ||
(github.event_name == 'pull_request_review' && github.event.review.state == 'approved')
# Service containers to run with this job. Required for running tests
services:
# Label used to access the service container
redis:
# Docker Hub image for Redis
image: redis
ports:
# Opens tcp port 6379 on the host and service container
- 6379:6379
mongo:
image: mongo
ports:
- 27017:27017
steps:
- name: Checkout the code