Skip to content

Commit cce870b

Browse files
committed
use yarn instead of npm
1 parent c568072 commit cce870b

6 files changed

Lines changed: 1958 additions & 3937 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@ jobs:
1818
uses: actions/setup-node@v4
1919
with:
2020
node-version: 22
21-
cache: npm
21+
cache: yarn
2222

2323
- name: Install dependencies
24-
run: npm ci
24+
run: yarn install
2525

2626
- name: Lint
27-
run: npm run lint
27+
run: yarn lint
2828

2929
- name: Test
30-
run: npm run test -- --run
30+
run: yarn test --run
3131

3232
- name: Build
33-
run: npm run build
33+
run: yarn build

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ A lightweight React frontend for the Recipe Finder API, allowing users to search
4444
To run locally:
4545

4646
```bash
47-
npm install
48-
npm dev
47+
yarn install
48+
yarn dev
4949
```
5050

5151
Ensure your `.env` file contains the API URL and token.

0 commit comments

Comments
 (0)