just copy paste because seems imposible otherwise
Test via test action and then build image / unit-test (push) Successful in 2m5s Details
Test via test action and then build image / build (push) Failing after 7s Details

This commit is contained in:
Alie 2024-01-07 13:24:53 +01:00
parent 1e3889d9b9
commit 5917aa0fd8
1 changed files with 12 additions and 4 deletions

View File

@ -9,13 +9,21 @@ jobs:
unit-test: unit-test:
container: container:
image: docker:dind image: docker:dind
volumes:
- /usr/local/share/.cache/yarn:/usr/local/share/.cache/yarn
- /var/lib/docker/image:/var/lib/docker/image
- /var/lib/docker/overlay2:/var/lib/docker/overlay2
steps: steps:
- name: Starting docker daemon
run: docker-init -- dockerd --host=unix:///var/run/docker.sock &
- name: Installing necessary packages - name: Installing necessary packages
run: apk add nodejs git curl bash run: apk add yarn git curl bash
- name: Checkout - name: Check out repository code
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Run test job - name: Install project dependencies
uses: ./.gitea/workflows/test.yaml run: yarn install --frozen-lockfile --ignore-scripts
- name: Run docker-compose
run: docker compose down -v && docker compose run bot-api bun test
build: build:
container: container:
image: docker:dind image: docker:dind