ci: simplify backend unit test workflow by removing yarn installation and redundant setup steps
This commit is contained in:
parent
c6d4b757b4
commit
eda5549234
8
.github/workflows/backend-unit-test.yaml
vendored
8
.github/workflows/backend-unit-test.yaml
vendored
@ -10,18 +10,12 @@ jobs:
|
|||||||
uses: actions/setup-node@v4
|
uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
node-version: '20'
|
node-version: '20'
|
||||||
- name: Setup yarn # Needed for the redlock package
|
|
||||||
run: npm install -g yarn
|
|
||||||
- name: Install wait-on
|
- name: Install wait-on
|
||||||
run: npm install -g wait-on
|
run: npm install -g wait-on
|
||||||
- name: Checkout OpenVidu Meet
|
- name: Checkout OpenVidu Meet
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Setup OpenVidu Meet
|
- name: Setup OpenVidu Meet
|
||||||
shell: bash
|
uses: ./.github/actions/setup-openvidu-meet
|
||||||
run: |
|
|
||||||
./prepare.sh
|
|
||||||
cd backend
|
|
||||||
npm install
|
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: |
|
run: |
|
||||||
cd backend
|
cd backend
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user