ci: install yarn for actions on forgejo
Summary: The forgejo action use act under the hood. The default image does not have yarn installed so, this is installing it. Test Plan: CI
This commit is contained in:
parent
0d9a76760d
commit
b5635accf9
1 changed files with 6 additions and 0 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
|
@ -18,6 +18,9 @@ jobs:
|
|||
node-version: 18
|
||||
cache: yarn
|
||||
|
||||
- name: Install yarn
|
||||
run: npm i -g yarn
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install
|
||||
|
||||
|
|
@ -44,6 +47,9 @@ jobs:
|
|||
node-version: ${{ matrix.node-version }}
|
||||
cache: yarn
|
||||
|
||||
- name: Install yarn
|
||||
run: npm i -g yarn
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue