[#45] Moved tests to before linting

pull/72/head
Jef Roosens 2021-05-11 22:03:44 +02:00
parent 9dbb4c8804
commit c8bfc16af8
Signed by: Jef Roosens
GPG Key ID: 955C0660072F691F
1 changed files with 7 additions and 7 deletions

View File

@ -30,6 +30,13 @@ pipeline:
- cargo build
# =====TESTING=====
test-backend:
image: chewingbever/fej-builder:latest
commands:
- cargo test
# =====LINTING=====
lint-frontend:
image: node:15-alpine3.13
@ -45,13 +52,6 @@ pipeline:
- cargo fmt -- --check
# This is run here because it requires compilation
- cargo clippy -- -D warnings
# =====TESTING=====
test-backend:
image: chewingbever/fej-builder:latest
commands:
- cargo test
# =====REBUILD & FLUSH CACHE=====