Skip to content

Commit

Permalink
Fixed tests actions
Browse files Browse the repository at this point in the history
Signed-off-by: Emil Balitzki <emil.balitzki@gmail.com>
  • Loading branch information
Corgam committed May 6, 2024
1 parent c06f49e commit 953c6b4
Show file tree
Hide file tree
Showing 4 changed files with 66 additions and 96 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/backend-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Backend - Tests

on:
pull_request:
branches:
- sprint-release
- main
paths:
- "backend/**"
push:
branches:
- sprint-release
- main
paths:
- "backend/**"

jobs:
linting:
name: Check linting
runs-on: ubuntu-latest

steps:
- name: Echo Linting
run: echo "linting"

tests:
needs: linting
name: Run Tests
runs-on: ubuntu-latest

steps:
- name: Echo Test
run: echo "test"
33 changes: 33 additions & 0 deletions .github/workflows/frontend-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Frontend - Tests

on:
pull_request:
branches:
- sprint-release
- main
paths:
- "frontend/**"
push:
branches:
- sprint-release
- main
paths:
- "frontend/**"

jobs:
linting:
name: Check linting
runs-on: ubuntu-latest

steps:
- name: Echo Linting
run: echo "linting"

tests:
needs: linting
name: Run Tests
runs-on: ubuntu-latest

steps:
- name: Echo Test
run: echo "test"
48 changes: 0 additions & 48 deletions .github/workflows/test_be.yml

This file was deleted.

48 changes: 0 additions & 48 deletions .github/workflows/test_fe.yml

This file was deleted.

0 comments on commit 953c6b4

Please sign in to comment.