Skip to content

Commit db3e428

Browse files
committed
build!: migrate npm to yarn
1 parent b94c36d commit db3e428

File tree

5 files changed

+8485
-16857
lines changed

5 files changed

+8485
-16857
lines changed

.github/workflows/lint.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
node-version: 20
2424

2525
- name: Install dependencies
26-
run: npm ci
26+
run: yarn ci
2727

2828
- name: ESLint
29-
run: npm run lint
29+
run: yarn run lint
3030

3131
- name: Types
32-
run: npm run typecheck
32+
run: yarn run typecheck

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ WORKDIR /app
55
COPY package.json /app
66
COPY package-lock.json /app
77

8-
RUN npm install
8+
RUN yarn install
99

1010
COPY . /app
1111

12-
RUN npm run build
12+
RUN yarn run build
1313

1414
# There are build issues on the Node 20 version. Jump to 20 when the bug will be fixed.
1515
# https://github.com/nodejs/docker-node/issues/1946

0 commit comments

Comments
 (0)