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,15 +12,15 @@ 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:
node-version: 18
cache: yarn
- name: Install yarn
run: npm i -g yarn
- name: Install dependencies
run: yarn install
@ -41,15 +41,15 @@ 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:
node-version: ${{ matrix.node-version }}
cache: yarn
- name: Install yarn
run: npm i -g yarn
- name: Install dependencies
run: yarn install