diff options
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.drone.yml b/.drone.yml index 52e9cf4859..fa468730fb 100644 --- a/.drone.yml +++ b/.drone.yml @@ -70,11 +70,17 @@ steps: - make checks-backend depends_on: [lint-backend] + - name: test-frontend + image: node:14 + commands: + - make test-frontend + depends_on: [lint-frontend] + - name: build-frontend image: node:14 commands: - make frontend - depends_on: [lint-frontend] + depends_on: [test-frontend] - name: build-backend-no-gcc pull: always |