Skip to content

Commit 51bc838

Browse files
committed
bye bye yarn , welcome back npm
1 parent d16b570 commit 51bc838

File tree

6 files changed

+6375
-3577
lines changed

6 files changed

+6375
-3577
lines changed

.github/workflows/build-and-test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: actions/setup-node@v3
1616
with:
17-
node-version: 18
18-
cache: "yarn"
19-
- run: yarn
20-
- run: yarn format:check
21-
- run: yarn lint
17+
node-version: 22
18+
cache: "npm"
19+
- run: npm ci
20+
- run: npm run format:check
21+
- run: npm run lint

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN mkdir -p ~/sources \
1414
&& ./setup.sh config_box \
1515
&& ./setup.sh config_prompt \
1616
&& ./setup.sh config_vim \
17-
&& yarn
17+
&& npm ci
1818

1919
RUN addgroup -S nonroot \
2020
&& adduser -S nonroot -G nonroot

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,13 @@ git config --global core.editor vim
4040
git submodule update --init --recursive
4141
```
4242

43+
> :warning: install node dependencies
44+
45+
```bash
46+
nvm install
47+
npm ci
48+
```
49+
4350
## Optional - macOs dev setup
4451

4552
<details>

0 commit comments

Comments
 (0)