mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-15 12:55:41 +01:00
fix (ci): github action flow
This commit is contained in:
parent
bbd10279de
commit
8d8ab0b793
1 changed files with 3 additions and 3 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
|
@ -90,7 +90,7 @@ jobs:
|
|||
npm test
|
||||
|
||||
test_backend:
|
||||
needs: [test_prepare, build_frontend]
|
||||
needs: [test_prepare, build_frontend, build_backend]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Restore
|
||||
|
|
@ -138,7 +138,7 @@ jobs:
|
|||
cat access.log | grep -vz "ERR"
|
||||
|
||||
test_e2e:
|
||||
needs: [test_prepare, build_backend, test_smoke]
|
||||
needs: [test_smoke, test_prepare]
|
||||
runs-on: ubuntu-latest
|
||||
container:
|
||||
image: machines/puppeteer
|
||||
|
|
@ -170,7 +170,7 @@ jobs:
|
|||
|
||||
release_docker:
|
||||
if: github.ref == 'refs/heads/master'
|
||||
needs: [test_smoke, test_e2e]
|
||||
needs: [ test_e2e, test_backend, test_frontend ]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Init
|
||||
|
|
|
|||
Loading…
Reference in a new issue