Skip to content

Commit

Permalink
reorder fe and be tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
Sysoev, Vladimir committed Jun 19, 2022
1 parent fa04663 commit 2435aeb
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .drone-integra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,30 @@ steps:
commands:
- make deps-frontend

- name: checks-frontend
image: node:16
commands:
- make checks-frontend
depends_on: [deps-frontend]

- name: lint-frontend
image: node:16
commands:
- make lint-frontend
depends_on: [deps-frontend]

- name: test-frontend
image: node:16
commands:
- make test-frontend
depends_on: [lint-frontend]

- name: build-frontend
image: node:16
commands:
- make frontend
depends_on: [test-frontend]

- name: deps-backend
image: golang:1.18
pull: always
Expand All @@ -35,12 +59,6 @@ steps:
path: /go
depends_on: [build-frontend]

- name: lint-frontend
image: node:16
commands:
- make lint-frontend
depends_on: [deps-frontend]

- name: lint-backend
image: gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
pull: always
Expand Down Expand Up @@ -83,12 +101,6 @@ steps:
- name: deps
path: /go

- name: checks-frontend
image: node:16
commands:
- make checks-frontend
depends_on: [deps-frontend]

- name: checks-backend
image: golang:1.18
commands:
Expand All @@ -98,18 +110,6 @@ steps:
- name: deps
path: /go

- name: test-frontend
image: node:16
commands:
- make test-frontend
depends_on: [lint-frontend]

- name: build-frontend
image: node:16
commands:
- make frontend
depends_on: [test-frontend]

- name: build-backend-no-gcc
image: golang:1.18 # this step is kept as the lowest version of golang that we support
pull: always
Expand Down

0 comments on commit 2435aeb

Please sign in to comment.