yarn
Unit Tests with docker compose / unit-test (pull_request) Successful in 3m11s
Details
Unit Tests with docker compose / unit-test (pull_request) Successful in 3m11s
Details
This commit is contained in:
parent
2b3401b4a3
commit
30d8ff2ec9
|
@ -12,10 +12,10 @@ jobs:
|
||||||
- name: Starting docker daemon
|
- name: Starting docker daemon
|
||||||
run: docker-init -- dockerd --host=unix:///var/run/docker.sock &
|
run: docker-init -- dockerd --host=unix:///var/run/docker.sock &
|
||||||
- name: Installing necessary packages
|
- name: Installing necessary packages
|
||||||
run: apk add npm git curl bash
|
run: apk add yarn git curl bash
|
||||||
- name: Check out repository code
|
- name: Check out repository code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
- name: Install project dependencies
|
- name: Install project dependencies
|
||||||
run: npm install --ignore-scripts
|
run: yarn install --ignore-scripts
|
||||||
- name: Run docker-compose
|
- name: Run docker-compose
|
||||||
run: docker compose down -v && docker compose run bot-api bun test
|
run: docker compose down -v && docker compose run bot-api bun test
|
|
@ -0,0 +1,4 @@
|
||||||
|
[install.lockfile]
|
||||||
|
# whether to save a non-Bun lockfile alongside bun.lockb
|
||||||
|
# only "yarn" is supported
|
||||||
|
print = "yarn"
|
Loading…
Reference in New Issue