Skip to content

Commit 216f842

Browse files
committed
install yarn in CI/CD
Yarn is missing from the python:2.7.18-buster base image we switched to
1 parent bf2b371 commit 216f842

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/cd.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
uses: actions/setup-node@v3
2020
with:
2121
node-version: ${{ matrix.node-version }}
22+
- name: Install Yarn
23+
run: npm install -g yarn
2224
- name: "[Setup] Install dependencies"
2325
run: yarn
2426
- name: "[Test] Run all tests"

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020
uses: actions/setup-node@v3
2121
with:
2222
node-version: ${{ matrix.node-version }}
23+
- name: Install Yarn
24+
run: npm install -g yarn
2325
- name: "[Setup] Install dependencies"
2426
run: yarn
2527
- name: "[Test] Run linters"

0 commit comments

Comments
 (0)