add actions config
This commit is contained in:
parent
580d04d1e7
commit
068a1b38f9
2 changed files with 4 additions and 4 deletions
2
.github/workflows/cd.yml
vendored
2
.github/workflows/cd.yml
vendored
|
|
@ -7,7 +7,7 @@ on:
|
|||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: [docker]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
|
|
|||
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
|
@ -8,7 +8,7 @@ on:
|
|||
|
||||
jobs:
|
||||
backend-test:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: [docker]
|
||||
|
||||
services:
|
||||
postgres:
|
||||
|
|
@ -71,7 +71,7 @@ jobs:
|
|||
name: backend-coverage
|
||||
|
||||
frontend-test:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: [docker]
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
|
@ -106,7 +106,7 @@ jobs:
|
|||
name: frontend-coverage
|
||||
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: [docker]
|
||||
needs: [backend-test, frontend-test]
|
||||
|
||||
steps:
|
||||
|
|
|
|||
Loading…
Reference in a new issue