Compare commits

...

1 commit

Author SHA1 Message Date
a4376b9d33 ci: install yarn for actions on forgejo
All checks were successful
CI / Lint (pull_request) Successful in 40s
CI / Test Node (pull_request) Successful in 34s
Conventional Tools Commitlint / Commitlint (pull_request) Successful in 5s
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
2024-09-17 08:05:02 +01:00

View file

@ -12,6 +12,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Install yarn
run: npm i -g yarn
- name: Set up Node
uses: actions/setup-node@v3
with:
@ -38,6 +41,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Install yarn
run: npm i -g yarn
- name: Set up Node
uses: actions/setup-node@v3
with: