mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-06 08:22:24 +01:00
fix (test): use frontend build on e2e tests
This commit is contained in:
parent
bdc576a8a1
commit
bbd10279de
1 changed files with 5 additions and 1 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
|
@ -90,13 +90,17 @@ jobs:
|
|||
npm test
|
||||
|
||||
test_backend:
|
||||
needs: test_prepare
|
||||
needs: [test_prepare, build_frontend]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Restore
|
||||
uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: test
|
||||
- uses: actions/download-artifact@v3
|
||||
with:
|
||||
name: build-frontend
|
||||
path: server/ctrl/static/www/
|
||||
- uses: actions/setup-go@v3.5.0
|
||||
with:
|
||||
go-version: 1.19
|
||||
|
|
|
|||
Loading…
Reference in a new issue